Partial Intraday Volume in Daily chart

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #208580 quote
    RickTraderRickTrader
    Participant
    New

    Hi,

    I don’t have code.  But I can’t find sample to resolve my needs.

    I want in my Daily chart, to have Volumes only between 09:30 and 09:35 (can be paramtred?)

    Is it possible?

    Thanks.

    #208846 quote
    NicolasNicolas
    Keymaster
    Legend

    Possible to create an indicator that display only the volumes between 2 times:

    vol = 0
    if time>=093000 and time<=093500 then 
    vol = volume 
    endif 
    
    return vol
    #208857 quote
    RickTraderRickTrader
    Participant
    New

    Thanks Nicolas,

    But I think it will not work on Daily Chart?

    #208866 quote
    NicolasNicolas
    Keymaster
    Legend

    Indeed, we can’t get the intraday volume between 2 hours in the history, but that’s possible during the daily candlestick formation as long as the platform is opened and the code applied on the chart. That would need some custom coding also.

Viewing 4 posts - 1 through 4 (of 4 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

Partial Intraday Volume in Daily chart


ProBuilder: Indicators & Custom Tools

New Reply
Author
author-avatar
RickTrader @ricktrader Participant
Summary

This topic contains 3 replies,
has 2 voices, and was last updated by NicolasNicolas
3 years, 7 months ago.

Topic Details
Forum: ProBuilder: Indicators & Custom Tools
Language: English
Started: 01/28/2023
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...