I'm trying to use the timeframeset command do do a simple intraday explore, but can't get it to work. For some reason when I run the explore it is ignoring the timeframeset and just gives me EOD results. I have 1 minute data for the symbol I'm running it against. See below for the simple AFL code.
TimeFrameSet(in1Minute); Vol_Trig= V >= BBandTop(V,10,2); RSI_Trig = RSIa(C,10)>70; Filter = Vol_Trig AND RSI_Trig; AddColumn( Close, "Close" );
