Where can I find this?

Discussion in 'Trading Software' started by MaverickV71, Sep 20, 2017.

  1. Google doesn't know this, do you?

    I've noticed a correlation between two instruments, the one seems to lead the other by an hour.

    What I'm looking for is a charting facility/website that allows me to have both charts on a single page, laid over each other but one offset by an hour.

    One minute, 5 minute timeframe preferred so as to (dis)prove the accuracy of my observation.

    I'm a fan of forward testing, so I'm hoping to watch the lagging instruments price action catch up with the leader's chart.

    I don't suppose you know where I can find such a live, realtime charting site?

    My broker'd charting doesn't offer this, nor does TradingView.

    Thank you in advance for your helpful input.

    MaverickV71
     
  2. 2 lines of code in TOS Thinkscript (using 1 minute chart):
    plot line1= close("SPY");
    plot line2= close("SPY")[60];
     
    MaverickV71 likes this.