NexusFi: Find Your Edge


Home Menu

 





ATR of only green candles


Discussion in EasyLanguage Programming

Updated
    1. trending_up 4,029 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?
Pivot Indicator based on Level2 data
NinjaTrader
Volumetric charts
The Elite Circle
Help re translation of ninjascript to EL
NinjaTrader
Quantum physics & Trading dynamics
The Elite Circle
Radarscreen
TradeStation
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
ApexTraderFunding.com experience and review
65 thanks
What is Markets Chat (markets.chat) real-time trading ro …
54 thanks
Tao te Trade: way of the WLD
46 thanks
HumbleTraders next chapter
23 thanks
1 Minute Man
21 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


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