Announcement

Collapse
No announcement yet.

Changing data on tick charts

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

  • Changing data on tick charts

    Hi

    I have a efs that collects the following data, after this i look at conditions based on the numbers that this provide, I use this on a tick chart,
    Sometimes when it is running realtime signals are triggered but when the efs is reloaded some of the signals disappear, meaning that the numbers collected have changed.

    How can i configure the efs to always get the right data and not change once the efs is reloaded ?

    I have also got the setComputeClose(true); in the premain function.

    var macdhist = vMACD12_26.getValue(MACDStudy.HIST);
    var macdhist1 = vMACD12_26.getValue(MACDStudy.HIST, -1);
    var macd = vMACD12_26.getValue(MACDStudy.MACD) ;
    var macd1 = vMACD12_26.getValue(MACDStudy.MACD, -1) ;
    var macdsig = vMACD12_26.getValue(MACDStudy.SIGNAL);
    var macdsig1 = vMACD12_26.getValue(MACDStudy.SIGNAL,-1);
    var ema = vEMA3_of_Open.getValue(MAStudy.MA);
    var ema1 = vEMA3_of_Open.getValue(MAStudy.MA,-1);

  • #2
    biswar
    So that others can provide guidance or suggestions to help you resolve specific formula issues please post or attach your code or a complete working example that illustrates the issue you are describing. To attach the efs use the Attach File option available in the page in which you are composing your message.
    Alex

    Comment

    Working...
    X