Birmingham, England
Posts: 21 since Nov 2018
Thanks Given: 18
Thanks Received: 2
|
Just in case any novices like me stumble across this in the future, it was supposed to be STRATEGY BUILDER (Ninja trader7) not Strategy Analyzer, and you cannot use it to take into consideration multiple charts across different time/range/renko bars. You must learn to use C# in order to achieve this. Below is the relevant code you would be required to use:
if (CCI(20)[0] > 200 && CCI(BarsArray[1], 20)[0] > 200
&& CCI(BarsArray[2], 20)[0] > 200)
{
// Do something
}
|