NexusFi: Find Your Edge


Home Menu

 





Calling a boolseries from an indicator


Discussion in NinjaTrader

Updated
    1. trending_up 1,229 views
    2. thumb_up 4 thanks given
    3. group 2 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread

Calling a boolseries from an indicator

  #1 (permalink)
 roreilly 
Milwaukee WI
 
Experience: Intermediate
Platform: Firetip
Trading: oil, spy, qqq,
Posts: 17 since Sep 2012
Thanks Given: 60
Thanks Received: 22

I am interested in turning FatTails amazing heikin-ashi indicator into a strategy.

For that I need to program my strategy to access the Up.Trend boolseries. Long would be when the Up.Trend is true, and show when the Up.Trend is down.

Any examples of a strategy calling a boolseries from an indicator would be appreciated. Thank you.

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
ZombieSqueeze
Platforms and Indicators
Trade idea based off three indicators.
Traders Hideout
Better Renko Gaps
The Elite Circle
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Diary of a simple price action trader
26 thanks
Just another trading journal: PA, Wyckoff & Trends
25 thanks
Tao te Trade: way of the WLD
23 thanks
My NQ Trading Journal
16 thanks
HumbleTraders next chapter
9 thanks
  #2 (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 anaHeikinAshi indicator comes with an internal BoolSeries "upTrend". The indicator further comes with a public property "UpTrend" that can be used to access the BoolSeries via a strategy.

To access the indicator

(1) add an instance of the indicator to your strategy, for example

 
Code
#region Variables
.....
private anaHeikinAshiType  candleType  =  anaHeikinAshiType.Dan_Valcu_Smoothed;   
private int period  =   10;
private anaHAMAType  smoothingType  =  anaHAMAType.Ehlers;
private Indicator.anaHeikinAshi  AHA  =   null;
.....

protected override void Initialize()
{
   .....
   AHA = anaHeikinAshi(candleType, period, smoothingType);
   Add(AHA);
   .....
}


(2) Add properties for candleType, period and smoothing Type in order to access the parameters in your strategy.


(3) Use AHA in OnBarUpdate(). You can now access the trend of the current bar as "AHA.UpTrend[0]".

Reply With Quote
  #3 (permalink)
 roreilly 
Milwaukee WI
 
Experience: Intermediate
Platform: Firetip
Trading: oil, spy, qqq,
Posts: 17 since Sep 2012
Thanks Given: 60
Thanks Received: 22


Thanks for the great, quick response. And thank you for all of the great coding indicators you have provided. I can't believe how much trading strategy I am being exposed to by reviewing them. It is very enlightening, and I appreciate your contribution very much.

Started this thread Reply With Quote




Last Updated on July 22, 2014


© 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