can someone put up some procedure as to how to convert Ninja Indicator to Ninja Strategy. is it few steps copying the Indicator's code in the Strategy wizard? or is there much coding involved as i dont know coding and haven't done it before. any help is appreciated
Can you help answer these questions from other members on futures io?
There is no real way to convert an indicator to a strategy, e_H_G. They are two different things. Most indicators are just visual plots on a graph based on mathematical formulas. A strategy is a set of rules of when, what, how much, and why to enter and exit trades. You can use indicators to build your strategy, as you've probably seen in the strategy wizard, but most indicators can't simply be "converted" to be a strategy, or at least a viable one. With that said, some indicators I build contain buy/sell rules and have "Buy" or "Sell" data series so if I want to use it in a strategy I just look at the buy/sell data coming out of the indicator and just focus the strategy code on money management and other factors strats need to concern themselves with.
Where I can learn to make strategy with NinjaTrader?? I would like to backtest with indicators how Eco2NewSharky??
Is there somebody that work with market analyzer??
I downloaded some indicators however after I import them everything is ok exept the indicators with paint bars dont print. any idea what I have to do to make the paint bars print?
Site Administrator Swing Trader Data Scientist & DevOps
Manta, Ecuador
Experience: Advanced
Platform: My own custom solution
Trading: Emini Futures
Posts: 49,780 since Jun 2009
Thanks: 32,308 given,
97,567
received
It is technically possible but requires advanced programming, and it also will work for live trading only - not backtesting.
Also, you replied to a 3 year old thread with a question that is off topic for this thread. Please don't do this, we try to keep things organized here.
As Mike said, it's advanced programming. At the moment NT does not normally allow an ATM (chart trader) and strategy to be run simultaneously. As a work around, you need to use the ChartControl functions, which are technically not supported by NT. But I understand that NT will be offering more support for them in NT 8.
Every indicator is different. You've got to know what the author of the indicator provided as public accessibility. Anything in the indicator that is public should be able to be used in your strategy (public DataSeries is an example).
Here's an example ... say you're using the Stochastics indicator ... you could access the K DataSeries like so ...
Stochastics(PeriodD,PeriodK,Smooth).K[0].
This calls the constructor for the Stochastics class, and returns the current value for %K.
You might then use something like the following in your strategy ...
Hi Everyone,
how do i add a email alert to a my target and my stop loss when its triggered. i did the entery long and i get the email alert for that, but dont know how to do the other 2. \this is what i have so far. thanks all
Site Administrator Swing Trader Data Scientist & DevOps
Manta, Ecuador
Experience: Advanced
Platform: My own custom solution
Trading: Emini Futures
Posts: 49,780 since Jun 2009
Thanks: 32,308 given,
97,567
received
OK I am closing this thread. For whatever reason, people are asking all kinds of off-topic questions here instead of creating new proper threads or using the search feature to find existing relevant threads to post in.
So to prevent that from continuing, thread closed.
For those left with unanswered questions, create a new thread if you've searched and didn't find a relevant and on-topic thread to post in.