NexusFi: Find Your Edge


Home Menu

 





Collection of "ana"-Indicators for NinjaTrader


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one Fat Tails with 53 posts (428 thanks)
    2. looks_two Big Mike with 8 posts (25 thanks)
    3. looks_3 podski with 5 posts (4 thanks)
    4. looks_4 Aragorn with 4 posts (1 thanks)
      Best Posters
    1. looks_one Fat Tails with 8.1 thanks per post
    2. looks_two Silvester17 with 6 thanks per post
    3. looks_3 Big Mike with 3.1 thanks per post
    4. looks_4 podski with 0.8 thanks per post
    1. trending_up 77,595 views
    2. thumb_up 476 thanks given
    3. group 106 followers
    1. forum 109 posts
    2. attach_file 37 attachments




 
Search this Thread

Collection of "ana"-Indicators for NinjaTrader

  #41 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,440 since Jun 2009
Thanks Given: 33,212
Thanks Received: 101,599

Notifications sent.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
MC PL editor upgrade
MultiCharts
Trade idea based off three indicators.
Traders Hideout
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
Increase in trading performance by 75%
The Elite Circle
Better Renko Gaps
The Elite Circle
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
33 thanks
Tao te Trade: way of the WLD
24 thanks
My NQ Trading Journal
14 thanks
GFIs1 1 DAX trade per day journal
11 thanks
HumbleTraders next chapter
11 thanks
  #42 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102

I have just uploaded / updated the following ergodic indicators by William Blau.

- Double Smoothed Momentum
- Double Smoothed Stochastics
- Directional Trend Index
- True Strength Index

For detailed information on the indicators, please read William Blau's book "Momentum, Direction and Divergence". The ergodic indicators by William Blau all share a common characteristic. He starts with an oscillator which can hold positive or negative values. This oscillator is exponentially smoothed several times. The result becomes the numerator. In a second step, Blau also exponentially smoothes the absolute amounts of the oscillator values, the result of which becomes the denominator. Dividing the numerator by the denominator and multiplying the result with 100 creates a new oscillator, which displays values between -100 and + 100. The whole process therefore is a normalization, which can be applied to all oscillators. For example, it is possible to create an Ergodic CCI by applying the same transformation to a CCI.

The Double Smoothed Stochastics and the Double Smoothed Momentum use the same approach to normalization as the (standard) Stochastics indicator, but just add double or triple smoothing.


Here are the links to William Blau's indicators:


Double Smoothed Momentum:






Double Smoothed Stochastics:






Directional Trend Index:






True Strength Index:




Started this thread Reply With Quote
  #43 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,440 since Jun 2009
Thanks Given: 33,212
Thanks Received: 101,599


Notifications sent.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #44 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102

With the latest update of the anaTSI, I have added three GridCategory parameters, which are the trend filter, the overbought and oversold lines. Default values for those parameters are anaTSITrendType.TSI_Signal_Cross, +25 and -25.

@jlwade123: This means that you need to change the syntax, when you call the anaTSI from within another indicator or strategy. The correct syntax is now

anaTSI (int signalPeriod, anaTSISmoothType signalMA, int period1, int period2, int period3, anaTSISmoothType trueStrengthMA, anaTSITrendType trendfilter, int oversold line, int overbought line)

signalPeriod: period for the moving average, which is used for calculating the signal line
signalMA: moving average used for calculating the signal line
period1: first period used for smoothing the TSI (default value 20, the slow period)
period2: second period used for smoothing the TSI (default value 5, the fast period)
period3: third period used for smoothing the TSI (default value 1, which means no further smoothing)
trueStrengtMA: moving avarege used for double-smoothing or triple-smoothing the TSI
trendfilter: trendfilter used to produce the paint bars
oversold line: lower line plotted (default value - 25)
overbought line: upper line plotted (default value +25)


Triple smoothing

William Blau used both double smoothing (standard TSI) and triple smoothing. With the default values the indicator uses double smoothing, as the third smoothing period is set to 1 (no smoothing). If you wish to use a triple smoothed TSI, just change the third smoothing period.


Trend filter

The indicator comes with a trend filter

- which can be displayed as paintbars
- which can be directly used by a strategy (call anaTSI(......).Trend[0]

anaTSI(....).Trend[0] returns an integer, which can take the values + 1 (uptrend), -1(downtrend) or 0 (neutral trend). To determine the trend state, three different methods can be used:

(1) TSI_Signal_Cross:

- uptrend: TSI above signal line and above oversold line
- downtrend: TSI below signal line and below overbought line
- neutral trend: other cases

(2) TSI

- uptrend: TSI rising and above oversold line
- downtrend: TSI falling and below overbought line
- neutral trend: other cases

(3) Signal

- uptrend: signal rising and above oversold line
- downtrend: signal falling and below overbought line
- neutral trend: other cases






Started this thread Reply With Quote
  #45 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102

I have added overbought (default value 68) and oversold (default value 32) lines to the Trader Dynamic Index. The updated indicator is available here:



The Traders Dynamic Index was developed by Dean Malone and presented as part of the E.A.S.Y trading method.



Started this thread Reply With Quote
  #46 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,440 since Jun 2009
Thanks Given: 33,212
Thanks Received: 101,599

Notifications sent.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #47 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102

The Heikin-Ashi indicator had a small bug, which was discovered by @Nientenickgrazie. The trend information was not set properly to the BoolSeries "UpTrend" for the Heikin-Ashi indicator.

The bug did not affect the Heikin-Ashi charts, but only had an impact, when the indicator was called by another indicator or used with an automated strategy.

The Heikin-Ashi paint bar indicator was not affected, as the trend plot was properly calculated.


The updated version is available here:


Started this thread Reply With Quote
  #48 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,440 since Jun 2009
Thanks Given: 33,212
Thanks Received: 101,599

Notifications sent.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #49 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102

The Klinger Volume Oscillator was published by Stephen J.Klinger in the December 1997 issue of Technical Analysis of Stocks & Commodities. Here is a quick implementation for NinjaTrader.

Please read the original text published by Stephen Klinger to understand how to trade it. Here is a short excerpt:

"The most powerful use of the KVO comes when the indicator reaches an extreme reading either above or below the center line and reverses direction. This signals an exhaustion of the prevailing trend and warns of an impending reversal in price.

The most reliable signals occur in the direction of the prevailing trend. Trades against the trend tend to be high-risk ventures.

The most important signal occurs when the KVO diverges from price action, especially on price extremes, either in
overbought or oversold territory. When a security makes a new high or low for a cycle and the KVO fails to confirm
this, the indicator is warning that the trend is losing momentum and nearing completion."



Download link:





Started this thread Reply With Quote
  #50 (permalink)
 
tderrick's Avatar
 tderrick 
Nashville, Tennessee
 
Experience: Intermediate
Platform: Ninja / Jigsaw / 9G
Broker: AMP / CQG
Trading: NQ, YM and ES
Posts: 1,588 since Sep 2010
Thanks Given: 4,260
Thanks Received: 2,532


Such wonderful work, Harry. We are truly blessed to have you with us


AJ
Nashville, Tennessee


"Life On The Edge of SR"
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:




Last Updated on March 28, 2020


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts