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

Wolf Wave for Amibroker (AFL)
picaso
about 15 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 2)
Tags:
amibroker, pattern

Wolf Buy Pattern

Screenshots

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
_SECTION_BEGIN("wolfe");
/*Wolf Buy Pattern*/
 
 
Pa=Trough(Low,5,4);
 
Pb=Peak(High,5,3);
 
P1=Trough(Low,5,3);
 
P2=Peak(High,5,2);
 
P3=Trough(Low,5,2);
 
P4=Peak(High,5,1);
 
P5=Trough(Low,5,1);
 
tb=TroughBars(Low,5,1);
 
eki1=IIf(tb<=4 AND p1 > pa AND pb < p2 AND p1 < p4 AND
 
p1 > p3 AND p3 > p5 AND p4 < p2,1,0);
 
p1=Trough(Low,5,3);
 
p3=Trough(Low,5,3);
 
p5=Trough(Low,5,3);
 
o1=p1-p3;
 
o2=p1-p5;
 
a1=TroughBars(Low,5,3)-TroughBars(Low,5,2);
 
a2=TroughBars(Low,5,3)-TroughBars(Low,5,2);
 
tan1=o1/a1;
 
tan2=o2/a2;
 
eki2=abs(tan1-tan2);
 
Wolf=IIf(eki1 AND eki2 <= .2 ,1,0);
 
Graph1=Wolf;
 
Graph1Color=43;
 
Graph1Style=1;
_SECTION_END();

1 comments

1. ebisevac

Hi,
Thank you for posting my code.

Leave Comment

Please login here to leave a comment.

Back