Tenkan crossover by price

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #83280 quote
    Blue SkyBlue 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
    NicolasNicolas
    Keymaster
    Legend

    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.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

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 NicolasNicolas
7 years, 10 months ago.

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