IntradayBarIndex Screener

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

    Hi guys,

    i was programming a screener to compare the volume candle of todays first 5 minutes of the day and yesterdays first 5 minutes of the day. Sadly my code gives me not stocks that fulfill all criteria. I would be really happy if someone could help me and tell me what i’m doing wrong. I would like to then expand this scanner with the same thing just for 15 minute candles.

     

    IntraBarIndexToLook = 0

     

    timeframe(5 minutes)

    //The variable set to 0, just for coding purposes
    NumberOfDays = 0
    VolumeToday = 0
    VolumeOfPreviousDay = 0
    MinuteRatio = 0

    For i = 0 to 250 do
    if NumberOfDays < 2 then
    if intradaybarindex[i] = IntraBarIndexToLook
    then
    NumberOfDays = NumberOfDays + 1
    if NumberOfdays = 1 then
    VolumeToday = Volume[i]
    else
    VolumeOfPreviousDay = Volume[i]
    Endif
    Else
    Endif
    EndIf
    Next

     

    MinuteRatio = VolumeToday / VolumeOfPreviousDay

     

    SCREENER[MinuteRatio > 1] (MinuteRatio AS “MinuteRatio”)

    #191500 quote
    revstrat
    Participant
    New

    Yeah I am interested in also how to use the “Intradaybarindex” for screener on the intraday time frames. Would be great if someone could assist or provide some examples of how to code this.

    #191523 quote
    robertogozzi
    Moderator
    Master

    You can use this screener to make a test:

    SCREENER[close > 300](intraDayBarIndex)
    x-2.jpg x-2.jpg
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.

IntradayBarIndex Screener


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
LP13 @lp13 Participant
Summary

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

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 10/12/2017
Status: Active
Attachments: 1 files
Logo Logo
Loading...