NexusFi: Find Your Edge


Home Menu

 





EL: How many periods since last low?


Discussion in EasyLanguage Programming

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




 
Search this Thread

EL: How many periods since last low?

  #1 (permalink)
 arjfca 
Montreal, Canada
 
Experience: Intermediate
Platform: Multicharts
Broker: Interactive Broker
Trading: Forex
Posts: 263 since Sep 2010
Thanks Given: 440
Thanks Received: 91

Hello

I need to count how many periods since the last lowest low. I already got the Lowest value.

TLLow = Lowest (Low, 10) // give the lowest price of the last ten periods]

// How many periods since TLLow ????



Martin

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
NexusFi Journal Challenge - May 2024
Feedback and Announcements
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Better Renko Gaps
The Elite Circle
Trade idea based off three indicators.
Traders Hideout
MC PL editor upgrade
MultiCharts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
48 thanks
Just another trading journal: PA, Wyckoff & Trends
30 thanks
Tao te Trade: way of the WLD
26 thanks
Bigger Wins or Fewer Losses?
24 thanks
GFIs1 1 DAX trade per day journal
20 thanks
  #3 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,446 since Jun 2009
Thanks Given: 33,220
Thanks Received: 101,610



arjfca View Post
Hello

I need to count how many periods since the last lowest low. I already got the Lowest value.

TLLow = Lowest (Low, 10) // give the lowest price of the last ten periods]

// How many periods since TLLow ????



Martin

I am not sure if there is a MRO and LRO (most recent/least recent occurrence) in EasyLanguage.

So there is probably an easier way, but I would just take the simple way out:

 
Code
                            


vars
:
   
myLow (0),
   
myLowBar (0);


if 
date <> date[1then begin
  myLow 
Low;
  
myLowBar CurrentBar;
end;

if 
myLow then begin
  myLow 
L;
  
myLowBar CurrentBar;
end
I've not tested the code but I think you see what it does. myLowBar would always have the bar # of the last low. So if you needed to draw a trend line you could start it from "CurrentBar - myLowBar" bars ago.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #4 (permalink)
 arjfca 
Montreal, Canada
 
Experience: Intermediate
Platform: Multicharts
Broker: Interactive Broker
Trading: Forex
Posts: 263 since Sep 2010
Thanks Given: 440
Thanks Received: 91

A simple approach. Sometime there is no need to look deeper for a solution. hehe!

Martin

Started this thread Reply With Quote




Last Updated on November 26, 2010


© 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