NexusFi: Find Your Edge


Home Menu

 





Volume last 30 days greater than‏


Discussion in Platforms and Indicators

Updated
    1. trending_up 6,184 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?
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
Deepmoney LLM
Elite Quantitative GenAI/LLM
Futures True Range Report
The Elite Circle
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
Exit Strategy
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
59 thanks
Funded Trader platforms
37 thanks
NexusFi site changelog and issues/problem reporting
23 thanks
GFIs1 1 DAX trade per day journal
22 thanks
The Program
19 thanks
  #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