NexusFi: Find Your Edge


Home Menu

 





ATR of only green candles


Discussion in EasyLanguage Programming

Updated
    1. trending_up 4,387 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?
Asia Equities Crash Overnight -- Nikkei -5.2%, KOSPI -6. …
Traders Hideout
El Clasico Draws $9.2M in Prediction Market Action -- Bi …
Prediction Markets & Event Contracts
Hungary Called for Magyar at 97pct, Ending 16-Year Orban …
Prediction Markets & Event Contracts
UMA Votes Tonight: Polymarkets $80M Strategy Bitcoin Bat …
Prediction Markets & Event Contracts
Iran Update May 8: Still Reviewing MOU, Demands Reparati …
Traders Hideout
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Sober Journey With S&P
23 thanks
2026 Jlab journal
10 thanks
Algo automated / semi-automated trading anyone?
6 thanks
Lady Vols Primer: Trading Volatility Journal
6 thanks
2026 Fire Horse
5 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