Jump to content
Medved Trader Forums

Volume 50% => Average Volume in a scanner formula


Recommended Posts

you can do 

public void MainCalculation()
{
    if (SymbolData.Volume > (SymbolData.AvgVol * 1.5) )
    {
        SetColor(Color.White);
        SetScanResult(@"HighVol");
    }
}

this assumes that the Avg. Volume column in the portfolio is populating for you - that is not returned by all datafeeds. If not, you can do Hist Backfill all on the portfolio - MT calculates the average volume when doing Historical chart backfill...

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...