Range change from Wick highs to Bodys / TF

Viewing 1 post (of 1 total)
  • Author
    Posts
  • #119574 quote
    eyeball123eyeball123
    Participant
    New

    Hi All

    I hope that you will be able to help me.

    I am using the standard rectangle code form the site to define a range but need  to make the following changes and don’t know how.

    a) time to role over midnight or daily close, ( not sure if it is the close of day or midnight that is not allowing it to print the rectangle).

    b ) Use the body’s of the candles from a selected timeframe ( 1 hr ) rather than the wicks to define the range.

    Many thanks in advance.

    Paul

     

    starttime = 140000
    endtime = 190000
    
    if intradaybarindex=0 then
    hh = 0
    ll = 0
    alreadydrawn = 0
    endif
    
    if time=starttime then
    startbar=barindex
    endif
    
    if time=endtime then
    endbar=barindex
    endif
    
    if time>=starttime and time<=endtime then
    if high>hh then
    hh = high
    endif
    if low<ll or ll=0 then
    ll = low
    endif
    endif
    
    if time>endtime and alreadydrawn=0 then
    drawrectangle(startbar,hh,endbar,ll)coloured(255,10,10)
    alreadydrawn=1
    endif
    
    RETURN
    
Viewing 1 post (of 1 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

Range change from Wick highs to Bodys / TF


ProBuilder: Indicators & Custom Tools

New Reply
Author
author-avatar
eyeball123 @eyeball123 Participant
Summary

This topic contains 1 voice and has 0 replies.

Topic Details
Forum: ProBuilder: Indicators & Custom Tools
Language: English
Started: 02/13/2020
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...