NexusFi: Find Your Edge


Home Menu

 





Visual Studio dll referencing NT7 Indicators


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one DavidHP with 2 posts (2 thanks)
    2. looks_two Xaviour with 2 posts (0 thanks)
    3. looks_3 Quick Summary with 1 posts (0 thanks)
    4. looks_4 gretchen with 1 posts (0 thanks)
    1. trending_up 2,425 views
    2. thumb_up 2 thanks given
    3. group 2 followers
    1. forum 5 posts
    2. attach_file 0 attachments




 
Search this Thread
  #1 (permalink)
 
Xaviour's Avatar
 Xaviour 
Knoxville + TN/USA
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Ninjatrader Brokers
Trading: Futures
Posts: 2 since Mar 2014
Thanks Given: 9
Thanks Received: 0

I'm in the process of packing my custom indicators into an external dll using Visual Studio. I've gotten a few methods to work with help from this site (much appreciated) but I can't seem to make a call to any NT7 indicators. For example, the line...
 
Code
double avg = SMA(Input, 10)[barsBack];
gives me the error Error 'NinjaTrader.Indicator.SMA' is a 'type' but is used like a 'variable'
Does anyone have a clue as to what my problem is? Thanks in advance.


Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Daytrading to swingtrading
Traders Hideout
Warsh Drops Easing Bias, December Hike Now Above 50% -- …
Prediction Markets & Event Contracts
Without Pulisic, USA 61.5% Live vs. Australia -- France …
Prediction Markets & Event Contracts
Ninjatrader users - good CONNECTIONs post and article fr …
NinjaTrader
Thanks Mike. Godspeed.
The Elite Circle
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Want your NinjaTrader indicator created, free?
5 thanks
Afternoon-close session
1 thanks
Franks Trading Journey
1 thanks
Denied 20K payouts: Alpha Futures
1 thanks
FootPrintV2 Chart for NT8
1 thanks
  #3 (permalink)
 
DavidHP's Avatar
 DavidHP 
Isla Mujeres, MX
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Ninjatrader / Optimus Futures / AmpFutures
Trading: NQ / ES / 6E / 6B / CL
Frequency: Every few days
Duration: Minutes
Posts: 1,825 since Aug 2009
Thanks Given: 11,784
Thanks Received: 3,051



Xaviour View Post
I'm in the process of packing my custom indicators into an external dll using Visual Studio. I've gotten a few methods to work with help from this site (much appreciated) but I can't seem to make a call to any NT7 indicators. For example, the line...
 
Code
double avg = SMA(Input, 10)[barsBack];
gives me the error Error 'NinjaTrader.Indicator.SMA' is a 'type' but is used like a 'variable'
Does anyone have a clue as to what my problem is? Thanks in advance.

Remove the bars back. It is not needed for the SMA.
In the Ninjascript editor if you hover your mouse over the SMA it will tell you what parameters are needed for the indicator. In this case it is: int period If you need a dataseries then you can add input as the first parameter.

What are you trying to accomplish with the [barsback]


Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
Follow me on X Reply With Quote
Thanked by:
  #4 (permalink)
 
Xaviour's Avatar
 Xaviour 
Knoxville + TN/USA
 
Experience: Intermediate
Platform: NinjaTrader
Broker: Ninjatrader Brokers
Trading: Futures
Posts: 2 since Mar 2014
Thanks Given: 9
Thanks Received: 0

I have the following function I'm trying to offload (along with others) into a single dll that I can reuse in other Indicators and Strats. For this one, I'm getting a general direction from which way the market is entering my defined support level. I know this can be done other ways, but I would like to know how to make the NT7 indicators work as well in Visual Studio. (This function works flawlessly in all of the indicators I have used it in.)
 
Code
/// <summary>
/// Given: barsBack is the start of the first signal. support is the price level of the potential support
/// Returns: -1 from below, 1 from above, 0 otherwise
/// </summary>
/// <param name="barsBack"></param>
/// <param name="support"></param>
/// <returns></returns>
public int IntoSupport(int barsBack, double support, NinjaTrader.Data.IDataSeries Input) {
     i = new NinjaTrader.Indicator.SMA();

     double avg = i.SMA(Input, 10)[barsBack];
     if (avg < support) return -1;
     if (avg > support) return 1;
     else return 0; }


Started this thread Reply With Quote
  #5 (permalink)
 gretchen 
niceville florida
 
Experience: Intermediate
Platform: NinjaTrader
Trading: S&P 500, SPY
Posts: 1 since Jun 2014
Thanks Given: 13
Thanks Received: 0

I just downloaded VS_NTSampleProject that was posted by shodson. I think it's posted here, but may be on NT website. Sorry I can't locate the link. Scott Hodson (shodson) has two great webinars here on BigMikes that finally address more advanced topics. Hope this helps.


Reply With Quote
  #6 (permalink)
 
DavidHP's Avatar
 DavidHP 
Isla Mujeres, MX
Legendary Market Wizard
 
Experience: Advanced
Platform: NinjaTrader
Broker: Ninjatrader / Optimus Futures / AmpFutures
Trading: NQ / ES / 6E / 6B / CL
Frequency: Every few days
Duration: Minutes
Posts: 1,825 since Aug 2009
Thanks Given: 11,784
Thanks Received: 3,051


gretchen View Post
Sorry I can't locate the link. Scott Hodson (shodson) has two great webinars here on BigMikes that finally address more advanced topics. Hope this helps.

Here is a link to the webinars:


Rejoice in the Thunderstorms of Life . . .
Knowing it's not about Clouds or Wind. . .
But Learning to Dance in the Rain ! ! !
Follow me on X Reply With Quote




Last Updated on July 13, 2015


© 2026 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 - Downloads - Top
no new posts