NexusFi: Find Your Edge


Home Menu

 





Volume last 30 days greater than‏


Discussion in Platforms and Indicators

Updated
    1. trending_up 6,189 views
    2. thumb_up 0 thanks given
    3. group 2 followers
    1. forum 2 posts
    2. attach_file 0 attachments




 
Search this Thread

Volume last 30 days greater than‏

  #1 (permalink)
Jacare9
Sao Paulo Brasil
 
Posts: 1 since Aug 2014
Thanks Given: 0
Thanks Received: 0

Hi all,

I need an afl that I can explorer or scan my stocks, that gives me the stocks that have an average volume greater than 100.000 in the last 30 days/bars. I would like to be able to change the variable volume and days.

Could someone help me an write the afl code? I appreciate a lot.

Thank you very much in advance,

Jacare

Reply With Quote

Can you help answer these questions
from other members on NexusFi?
About a successful futures trader who didnĀ“t know anyth …
Psychology and Money Management
MC PL editor upgrade
MultiCharts
Cheap historycal L1 data for stocks
Stocks and ETFs
Better Renko Gaps
The Elite Circle
ZombieSqueeze
Platforms and Indicators
 
  #2 (permalink)
colion
Asheville, North Carolina
 
Posts: 24 since Sep 2010
Thanks Given: 1
Thanks Received: 15

filter = 1;
limitVolume = ma( v, 30 ) > 100000;
addcolumn( limitVolume, "limitVolume" );

Reply With Quote
  #3 (permalink)
Alessandro47
Sydney
 
Posts: 6 since Mar 2014
Thanks Given: 2
Thanks Received: 0



colion View Post
filter = 1;
limitVolume = ma( v, 30 ) > 100000;
addcolumn( limitVolume, "limitVolume" );

Please note that I am new to programming AB so caveat emptor.

Try this for parameter setting. If you want to change the parameters before the scan then go to the parameters icon in the analysis window and adjust, also make sure the scan is set for daily.

Filter = 1;
Days=Param("Days",30,5,200);// can adjust days between 5 and 200, default 30 days
vpara=Param("AvgVol",100000,50000,1000000);//can adjust volume levels from 50,000 to 1,000,000, default 100,000
limitVolume = MA( V, Days ) > vpara;
AddColumn( limitVolume, "limitVolume" );
AddColumn(V,"Volume");
AddColumn(MA(V,Days),"AvgVol");//this will show whether volume is above the average or not

Reply With Quote




Last Updated on September 8, 2014


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts