Australian (ASX) Stock Market Forum

Joined
18 March 2018
Posts
2
Reactions
0
Hi Peeps,

Firstly just wanna thank anyone that can help me out here, i am pretty new in the stock market and just seeking some information in regards to charts.

I just wanna ask if its possible to if i can add like a pointer to the chart every time the stock price hit certain price, as in for example if i look at the ASX200 chart and see how many times the price hit 5500 and 5555 i can see it with dots or something similar.

Thanks again
 
What charting software are you using
A horizontal line should be a standard charting tool
 
... or even trendlines for added flexibility
The Charting program I'm using (Pulse) does even channels: rising, falling, sideways...
 
Here is a way for you PEEP (lol)

In Amibroker, place a horizontal line on XJO chart and name it "RE" (resistance).
Get chart ID from chart Parameters -> Axes and Grid.
Place chart ID in array.
Scan date range.

Buy = Cross(H, Study("RE", 1003));

The high price crossed XJO 5500 points 16 times since 2010. (daily range)

You can even send an email to your iphone alerting of cross if trading live on an hourly for example.

AlertIf(Buy, "EMAIL", "Heads up Bro."+FullName(), 1);
 
Top