NeoTraders NB Indicator Lab

Share your 10.x indicators here.
Locked
User avatar
NeoTrader
Trader
Posts: 436
Joined: Wed Apr 04, 2012 2:52 pm
Location: small Village at Lake Chiemsee, Bavaria, Germany

Re: NeoTraders NB Indicator Lab

Post by NeoTrader »

hi MacLeod22,
MacLeod22 wrote:Neo, thanks for this awesome indicator. I'm sure it is something simple I have overlooked, but when I load NT TMA-CSS and set autosymbols to "true" the lines do not appear, but when I set it to false they do. I guess the scope of swaps indicluded affect the overall strength/weakness plotted, so prefer to select to true. What am I doing wrong?
When you select autosymbols=true the indicator searches all pairs that are relevant to this pair from the pairs that are listed in the marketwatch windows. If one of the pairs has not enough history data or your marketwatch window is empty this error can occur.

If autosymbols is set to false it uses only the pairs that are mentioned in the Parameter "symbolsToWeight"

You can use this Script to force some kind of history data update and try it again...

autosymbols=true doesn't bring any major change in the slope data.

But if you really want/need more pairs in the CSS calculation you can also put in the pairs by hand. See symbolsToWeight Parameter.


happy weekend,

NeoTrader

-
spotdespot
Trader
Posts: 768
Joined: Sun Jan 22, 2012 11:38 pm

Re: NeoTraders NB Indicator Lab

Post by spotdespot »

Hi NeoTrader,

I have been testing out various settings for the NT TMA-CSS indi and have a request. Is there a way of preventing the indi from redrawing the levels all the time? For example I am running a few tests with various timeframes using just the diff line and set levels that are specific to this e.g. +1 and -1 only. So I delete the standard 0.8, 0.4, 0 etc but if I change timeframe they are redrawn and it is then hard to see how the diff line is reacting at the 1/-1 levels. Even if you save a template they are redrawn when you apply the template.

Thanks,
Dave.
User avatar
NeoTrader
Trader
Posts: 436
Joined: Wed Apr 04, 2012 2:52 pm
Location: small Village at Lake Chiemsee, Bavaria, Germany

Re: NeoTraders NB Indicator Lab

Post by NeoTrader »

hi spotdespot,
spotdespot wrote:I have been testing out various settings for the NT TMA-CSS indi and have a request. Is there a way of preventing the indi from redrawing the levels all the time? For example I am running a few tests with various timeframes using just the diff line and set levels that are specific to this e.g. +1 and -1 only. So I delete the standard 0.8, 0.4, 0 etc but if I change timeframe they are redrawn and it is then hard to see how the diff line is reacting at the 1/-1 levels. Even if you save a template they are redrawn when you apply the template.
hehe...I know...this is bothering a few people....but help is on the horizon...;)

I needed to do this because of the histo mode and its level setting...it was a quick hack and so I apologize...

The next version will have the option to set up to 3 levels for the slope mode...will be released the next couple of days...it is already implemented just need to test some other fixes a little more.

happy sunday,

NeoTrader

-
spotdespot
Trader
Posts: 768
Joined: Sun Jan 22, 2012 11:38 pm

Re: NeoTraders NB Indicator Lab

Post by spotdespot »

Excellent - thanks for the update.
MacLeod22
Posts: 7
Joined: Sat Mar 24, 2012 5:26 am

Re: NeoTraders NB Indicator Lab

Post by MacLeod22 »

NeoTrader wrote:hi MacLeod22,
MacLeod22 wrote:Neo, thanks for this awesome indicator. I'm sure it is something simple I have overlooked, but when I load NT TMA-CSS and set autosymbols to "true" the lines do not appear, but when I set it to false they do. I guess the scope of swaps indicluded affect the overall strength/weakness plotted, so prefer to select to true. What am I doing wrong?
When you select autosymbols=true the indicator searches all pairs that are relevant to this pair from the pairs that are listed in the marketwatch windows. If one of the pairs has not enough history data or your marketwatch window is empty this error can occur.

If autosymbols is set to false it uses only the pairs that are mentioned in the Parameter "symbolsToWeight"

You can use this Script to force some kind of history data update and try it again...

autosymbols=true doesn't bring any major change in the slope data.

But if you really want/need more pairs in the CSS calculation you can also put in the pairs by hand. See symbolsToWeight Parameter.


happy weekend,

NeoTrader

-

Thanks Neo for taking the time to answer this - I'll play around with this when the markt reopens. Cheers Macca
User avatar
NeoTrader
Trader
Posts: 436
Joined: Wed Apr 04, 2012 2:52 pm
Location: small Village at Lake Chiemsee, Bavaria, Germany

Re: NeoTraders NB Indicator Lab

Post by NeoTrader »

NT TMA-CSS-SP
New Version: v.1.0.3 released on 01.07.2012
nt tma-css-sp standard, new other tf mode (d1) and new indicator tma-css-mtf.gif
Changes in Version 1.0.3
  • Change: Ratio Value/Slope is not available any longer (no real value)
  • New Feature: TMA is now available as Value/Slope or Value/Histo combination.
  • New Parameter: showTmaSlope - enable/disable the view of the TMA Slope/Histo
  • New Parameter: colorTma - color for the TMA Line and Value
  • New Feature: Up to three Levels that you can set for the Slope View
    All Levels are set auomatically as + and - Levels
  • Change: Info Table on the right shows now only values of selected slope(s) or Histo
  • New Feature: Table Corner is now selectable
  • New Parameter: infoCorner - select corner to show the Info Table
  • Fixed: If user selects another TF to show ( autoTimeFrame=false) the TF was not shown correct in relation to the current TF.
  • Index Buffers

    Code: Select all

    	IndicatorBuffers(7);
    	
    	SetIndexBuffer ( 0, slopeCSSDiff );
    	SetIndexLabel ( 0, "CSS Difference" );
    
    	SetIndexBuffer ( 1, slopeTMA );
    	SetIndexLabel ( 1, "TMA" );
    
    	SetIndexBuffer ( 2, histoOverLevel );
    	SetIndexLabel ( 2, StringConcatenate ( histoName, " - over ", histoLevel, " - " ) );
    
    	SetIndexBuffer ( 3, histoUnderLevel );
    	SetIndexLabel ( 3, StringConcatenate ( histoName, " - under ", -histoLevel, " - " ) );
    
    	SetIndexBuffer ( 4, histoRanging );
    	SetIndexLabel ( 4, StringConcatenate ( histoName, " - Range - " ) );
    
    	SetIndexBuffer ( 5, slopeCurrencyBase );
    	SetIndexLabel ( 5, currencyBase );
    	
    	SetIndexBuffer ( 6, slopeCurrencyCross );
    	SetIndexLabel ( 6, currencyCross );
    
If you have any further Feature Requests or find any Bugs please inform me here on this thread.

have fun and enjoy,


NeoTrader

Download in Post 1

-
You do not have the required permissions to view the files attached to this post.
Last edited by NeoTrader on Sun Jul 01, 2012 6:14 pm, edited 1 time in total.
User avatar
Jemook
Trader
Posts: 1085
Joined: Thu May 10, 2012 10:19 am
Location: Bondi, Sydney, Australia

Re: NeoTraders NB Indicator Lab

Post by Jemook »

More fantastic goodness ready for the week. Nice ideas and updates!! :)
Please note I am no longer affiliated with Global Prime. I've moved on to my next adventure with Afterprime.

Catch me here: https://www.afterprime.com
Armen

Re: NeoTraders NB Indicator Lab

Post by Armen »

This new version is amazing Neo.
Looks like COT report. :D
daldadalda
Posts: 7
Joined: Sat Mar 17, 2012 9:23 pm

Re: NeoTraders NB Indicator Lab

Post by daldadalda »

Hi Neotrader..
Great job neo and good hard work..
one more thing, can u pls post the buffer values of version 3 indicators like u posted before for version 2...
thanks in advanced...
User avatar
NeoTrader
Trader
Posts: 436
Joined: Wed Apr 04, 2012 2:52 pm
Location: small Village at Lake Chiemsee, Bavaria, Germany

Re: NeoTraders NB Indicator Lab

Post by NeoTrader »

hi daldadalda,
daldadalda wrote:Great job neo and good hard work..
one more thing, can u pls post the buffer values of version 3 indicators like u posted before for version 2...
ooops... forgot it...sorry ;)

...see announcement for index Buffers ...I edited it.

happy trading,

NeoTrader

-
Locked

Return to “10.x Indi forum”