Yes, I am using third party plugin as a data source.
As you mentioned, I am rephrasing my problem here
I have created a exploration system(EMA Cross over system) afl attached below,
emdPeriod = Param( "Period", 200, 2, 200, 1 );
tf=Param("Time Frame (min)",15,3,60,1);
NotifyParam = ParamToggle("Nofity","False|True",True);
tfrm=in1Minute*tf; // Time Period
TimeFrameSet(tfrm);
highTimeFrameEma = EMA(C,emdPeriod);
TimeFrameRestore();
highTimeFrameEma = TimeFrameExpand(highTimeFrameEma,tfrm);
Plot( highTimeFrameEma , "High Time Frame Exponetial Moving Average" + _PARAM_VALUES(), ParamColor("Signal color", colorYellow ), ParamStyle("Signal style") );
upperCross = Cross(Close,highTimeFrameEma);
LowerCross = Cross(highTimeFrameEma,close);
if( NotifyParam AND (upperCross[BarCount-1] OR LowerCross[BarCount-1])){
Say("Probable breakout Observed");
}
filter = upperCross OR LowerCross ;
AddTextColumn( FullName(), "FullName");
SetOption("NoDefaultColumns", True );
AddColumn( Close, "Close", 1.2 );
AddColumn( DateTime(), "Date", formatDateTime );
AddColumn(upperCross, "Buy", 1,colorRed);
AddColumn(LowerCross, "Sell", 1,colorGreen);
I want to run this afl using auto repeat exploration/scan repeat configuration as 1 min.
However, The charting of symbol got stuck while i started the exploration with above configuration. It happened for all symbols which i have added in the AmiBroker. Eventually , I have stopped the exploration scan and reboot the AmiBroker to make the chart up to date. I just want to understand, what can be possible reason for this?
I have tried the same process almost 5 times, I have ended up with the same problem .
On the other hand, If the exploration system was not running , then the charting was perfectly working fine.
Do AmiBroker have any limitation as such ?
Regards
Ajesh