Announcement

Collapse
No announcement yet.

Loading EFS File taking 12 Min

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Loading EFS File taking 12 Min

    Loading EFS File Time Problem

    I currently have 10 charts and with the studies that I included it takes 12 min to load the charts. Because it’s going back to the beginning of the data for each chart and calculating them.

    What would I need to include to my codes of the EFS file to calculate 40 bars back on the load of the File and then calculate on?

    Thank you

    Ketoma

  • #2
    I think I'm understanding this correctly. If not, please let me know. Please try this out and plug in the code as necessary.

    PHP Code:
    function main() {

        if (
    getCurrentBarIndex() < -40) {
            return;
        } else {
            
    /* Calculate Study
            ...
            */
        
    }

    Regards,
    Jay F.
    Product Manager
    _____________________________________
    Have a suggestion to improve our products?
    Click Support --> Request a Feature in eSignal 11

    Comment

    Working...
    X