I would like to get a general setup condition from my 5 min series and then check for exact entry conditions from the 1 minute bar i.e. on close of 5min bar I determine that my general entry conditions exist. Can I then continue to monitor the same indicator (based on 5 min bar) on close of the 1 min bar? Essentially I would just like a little more granularity for entering on the 5 min chart, rather than waiting for bar close.
So I guess it would look like this
Primary series=5 min
Secondary=1 min
myValue=ANIndicator(1,2,3);
if MyValue==4) //entry conditons met
{ enter=true; }
if (BarsInProgress == 1 && enter)
{
finalValue=ANIndicator(1,2,3); // But i want the ANIndicator to be using the data from the 5 min chart, not the 1. Is this possible?
if (finalValue==5)
{EnterLong();}
}

Comment