and drop the base time frame as:
//-----------------------------
protected override void Initialize()
{
Add(PeriodType.Minute,myInput0);
Add(PeriodType.Second,myInput1);
CalculateOnBarClose = true;
}
protected override void OnBarUpdate()
{
if (BarsInProgress==0) return;
.... program code....
//----------------------
the results are still different with different base time frame...
Could you pls explain?

Comment