• On the Compatibility of the Planetary Indicators to MultiCharts

    The Plantary Indicators have been developed in Easy Language (EL) for Tradestation (TS) platforms. Multicharts (MC) is somewhat compatible to the EL intepretation of TS. And to the best of my knowledge they comile and run without errors on MC starting from version 6.

    However, one function that does not work for most indicators is the forward projection. That means when the indicators are applied to a chart the results are fine up to the last bar on the chart. But MC stops drawing there. As an example see the chart below: The planetary ingresses are shown correctly – but no information on the future.

    PI ingresse multichart

    Â

    Reason is the different interpretation of the following code:

    Â if lastbaronchart then begin
    print (“last bar is “,d,t);
    value89 = TL_new(d,t,c,d,t+1,c);
    value53 = TL_GetEndDate(value89);
    value54 = TL_GetEndTime(value89);
    print (“first future bar is “,value53,value54);

    tl_setend(value89, value53, value54+1, c);
    value53 = TL_GetEndDate(value89);
    value54 = TL_GetEndTime(value89);
    print (“second future bar is “,value53,value54);

    TL_delete(value89);
    end;

    While TS delivers the correct date for the following bars, MC just delivers some garbage. If someone knows a simple workaround that works on all time frames please let me know.

    Categories: PlanetaryIndicators

    Leave a Reply

    Your email address will not be published.