Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Last 1 hr High Low for Amibroker (AFL)

Rating:
4 / 5 (Votes 4)
Tags:
amibroker

Last 1 hr High Low

Indicator / Formula

Copy & Paste Friendly
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//Amit Sharma//
//Last 1 hr high low//
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();
 
_SECTION_BEGIN("One Hour High-Low");
 
OST=091500;  //Observation Start Time
OET=101500;  //Observation End Time
MET=153000;  //Market End Time
 
Currtime =TimeNum(); //get current time
 
 
ob_end = Cross(TimeNum(),OET);  //detect the observation end time
ob_st = Cross(TimeNum(),OST);   //detect the observation start time
 
 
Highest_since = HighestSince(ob_st,H,1); //capture the 1 hour high
Lowest_since  = LowestSince(ob_st,L,1);  //capture the 1 hour low
 
ORBH = ValueWhen(ob_end ,Highest_since,1); //
ORBL = ValueWhen(ob_end ,Lowest_since,1); 
 
Plot(ORBH,"",colorGreen,styleDots);
Plot(ORBL,"",colorBlue,styleDots);
 
 
_SECTION_END();

1 comments

1. mikaelarhelger

cool!

Seems like it is possible to automatically establish trendlines as well?


Mikael

Leave Comment

Please login here to leave a comment.

Back