Future Kumo Cloud Readings

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #28981 quote
    deletedaccount14122020
    Participant
    New

    Hello,

    I would be grateful if anyone knows if the following is possible:

    When you incorporate the standard Ichimoku Kinko Hyo indicator which ProRealTime supply onto a chart the two elements of the Kumo cloud (Senkou Span A and Senkou Span B) are shown projected 26 periods forward. Are the projected values of the two  lines available at all.

    Many thanks

    Screen-Shot-2017-03-17-at-19.19.31.png Screen-Shot-2017-03-17-at-19.19.31.png
    #29110 quote
    Nicolas
    Keymaster
    Master

    You can get these values with the Ichimoku code iself:

    p1 = 9
    p2 = 26
    p3 = 52
    
    REM Tenkan-Sen = (Highest High + Lowest Low) / 2, for the past 9 days
    Upper1 = HIGHEST[p1](HIGH[1])
    Lower1 = LOWEST[p1](LOW[1])
    Tenkan = (Upper1 + Lower1) / 2
    
    REM Kijun-Sen = (Highest High + Lowest Low) / 2, for the past 26 days
    Upper2 = HIGHEST[p2](HIGH[1])
    Lower2 = LOWEST[p2](LOW[1])
    Kijun = (Upper2 + Lower2) / 2
    
    REM Senkou Span A = (Tenkan + Kijun) / 2, plotted 26 days ahead of today
    SpanA = (Tenkan + Kijun) / 2
    
    REM Senkou Span B = (Highest High + Lowest Low) / 2, for the past 52 days, plotted 26 days ahead of today
    SpanB = ((HIGHEST[p3](HIGH)) + LOWEST[p3](LOW)) / 2
    
    Return Kijun AS "Kijun Line", Tenkan AS "Tenkan Line", SpanA AS"Span A", SpanB AS"Span B"

    These lines are the ones calculated now, but plotted 26 periods ahead from now.

    #29128 quote
    deletedaccount14122020
    Participant
    New

    Thanks very much Nicolas. Really appreciate your help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

Future Kumo Cloud Readings


ProOrder: Automated Strategies & Backtesting

New Reply
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by deletedaccount14122020
8 years, 11 months ago.

Topic Details
Forum: ProOrder: Automated Strategies & Backtesting
Language: English
Started: 03/17/2017
Status: Active
Attachments: No files
Logo Logo
Loading...