NexusFi: Find Your Edge


Home Menu

 





ATR of only green candles


Discussion in EasyLanguage Programming

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




 
Search this Thread
  #1 (permalink)
DD4531
Tel aviv israel
 
Posts: 1 since Aug 2020
Thanks Given: 0
Thanks Received: 0

Hi guys,
How can i program an indicator the does an average of only the last 14 green candles?
or red candles.. doesn't matter
thanks


Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Expiration Day: Wall Street Rallies on Peace Hopes While …
Prediction Markets & Event Contracts
Ninjatrader users - good CONNECTIONs post and article fr …
NinjaTrader
World Cup Opens: USA at 45.5% Tonight as Markets Push Ba …
Prediction Markets & Event Contracts
CFTC Opens First COT Report Review in 20 Years -- Asks W …
Traders Hideout
CFTC Rewrites the Rulebook -- Kalshi Cracks $1B Non-Spor …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Big Mike in Ecuador
197 thanks
Sober Journey With S&P
27 thanks
30 Sessions
20 thanks
BERN ALGOS algo trading journal
8 thanks
Volume Indicators
8 thanks
  #2 (permalink)
Kolnidrei
Lyon/France
 
Posts: 23 since Aug 2012
Thanks Given: 1
Thanks Received: 14

 
Code
Input:
Period(14);
vars:
greenarraycounter(0),redarraycounter(0);
Arrays:
greenArray[Period](0),
redArray[Period](0);

if C>O then begin
greenarraycounter=greenarraycounter+1;
if greenarraycounter=Period+1 then greenarraycounter=1;
greenArray[greenarraycounter]=C;
value1 = AverageArray(greenArray);
Plot1(value1,"GreenAvg",green);
end;
if C<O then begin
redarraycounter=redarraycounter+1;
if redarraycounter=Period+1 then redarraycounter=1;
redArray[redarraycounter]=C;
value2 = AverageArray(redArray);
Plot2(value2,"redAvg",red);
end;


Reply With Quote
  #3 (permalink)
Kolnidrei
Lyon/France
 
Posts: 23 since Aug 2012
Thanks Given: 1
Thanks Received: 14


the above code is just for the average, if you want the ATR you need to replace the 'C' by 'H-L'...


Reply With Quote




Last Updated on August 16, 2020


© 2026 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 - Downloads - Top
no new posts