Tenkan crossover by price

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #83280 quote
    Blue Sky
    Participant
    New

    Hi guys I need some help.

    I need a ProScreener code of price crosses Tenkan; price crossed above and below. It should indicate when the price has crossed Tenkan and stop indicating it after 3 days (daily time frame).

    I’ll use that code as a base to try to build out my screener.

     

    Note: Tenkan is an element of Ichimoku Kinko Hyo.

     

    Thank you very much

    #83636 quote
    Nicolas
    Keymaster
    Master

    You can try the code below on the desired timeframe: It should detect any upside or downside cross with Tenkan that happened in the last 3 days.

    REM Tenkan-Sen = (Highest High + Lowest Low) / 2, for the past 9 days
    Upper2 = HIGHEST[9](HIGH)
    Lower2 = LOWEST[9](LOW)
    Tenkan = (Upper2 + Lower2) / 2
    
    test = summation[3](close crosses over tenkan or close crosses under tenkan)>0
    
    screener[test]
    Blue Sky thanked this post
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

Tenkan crossover by price


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
Blue Sky @blue-sky Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by Nicolas
7 years, 4 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 10/21/2018
Status: Active
Attachments: No files
Logo Logo
Loading...