NexusFi: Find Your Edge


Home Menu

 





Strange behavior when trying to move trendlines


Discussion in EasyLanguage Programming

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




 
Search this Thread

Strange behavior when trying to move trendlines

  #1 (permalink)
 greymatter 
Johns Creek GA/USA
 
Experience: Intermediate
Platform: ThinkorSwim, IB
Trading: Emini ES
Posts: 6 since Aug 2016
Thanks Given: 49
Thanks Received: 0

I am an experienced developer but new to EL.

I am using trend lines to mark horizontal price levels. What I want to do is mark local highs and lows from the bar where they originate all the way to the right edge of the chart. So I mark the level but then want to move the line up for highs or down for lows when a slightly higher high or lower low is discovered.

 
Code
using elsystem.drawingobjects;
using elsystem.drawing;

vars:
	TrendLine tl(null),        // reusable variable
	TrendLine mrh(null),    // reference to most recent high TL
	TrendLine mrl(null);     // reference to most recent low TL

        ...

        // create an initial price level line
	tl = TrendLine.create(BNPoint.create(BarNumber, high), bnpoint.create(99999, high));
	tl.Persist = true;
	tl.color = color.fromname("red");
	DrawingObjects.add(tl);
	mrh = tl;

I started out trying to simply move the existing line:

 
Code
mrh.StartPoint.Price = High;
mrh.EndPoint.Price = High;
For some reason, that does not work. Any idea why not? It seems like it should.

Plan B was to delete the existing line and create a new line at the new level:

 
Code
                DrawingObjects.Delete(mrh);
		tl = TrendLine.create(BNPoint.create(BarNumber, high), bnpoint.create(99999, high));
		tl.Persist = true;
		tl.Color = color.fromname("red");
		DrawingObjects.add(tl);
		mrh = tl;
This code also behaves very strangely. If I run it as is, my print statements show that it is processing the code, yet it never deletes the original line, and it never creates new lines.

However, if I comment out the line that says DrawingObjects.Delete(mrh);, then I get all the lines. (To be clear, all I want is the most extreme high and low, not all of the interim steps on the way to them.)

There must be something I do not understand about the references to these drawing objects. Is the problem that I am reusing the variables tl and mrh and mrl? Am I forced to create a new variable for each line? Or is there some other problem that I completely missing?

It almost seems like the lines are not executed in the order that they appear, as if the lines are being drawn and then instantly deleted. So with the call to Delete() commented out, the drawn lines remain.

Any insights appreciated!

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
Exit Strategy
NinjaTrader
Trade idea based off three indicators.
Traders Hideout
Better Renko Gaps
The Elite Circle
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
 
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
32 thanks
Bigger Wins or Fewer Losses?
24 thanks
Tao te Trade: way of the WLD
24 thanks
GFIs1 1 DAX trade per day journal
22 thanks
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,435 since Apr 2013
Thanks Given: 482
Thanks Received: 1,628


greymatter,

EndPoint and StartPoint are read only. Although the help states StartPoint.Price is get/set, it might be just be a mistake in the help. You can use the SetStartPoint and SetEndPoint methods of the trendline class instead to update the location.

Regards,

ABCTG

Follow me on Twitter Reply With Quote
Thanked by:




Last Updated on July 31, 2017


© 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