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

GAPexploration for Amibroker (AFL)
bob303
almost 12 years ago
Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, exploration

Exploration GAP with his sector, his industry, the diference in $ and percent.
gap up =>green and gapdown =>red

bob303

Similar Indicators / Formulas

General Market Exploration by XeL
Submitted by xel over 11 years ago
miftha indicator
Submitted by coolpace almost 14 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
DIX50,20,10
Submitted by morgen almost 14 years ago
Volume Spike Exploration
Submitted by ngocleasing over 13 years ago

Indicator / Formula

Copy & Paste Friendly
// GAP with his sector, his industry, the diference in $ and percent.
// gap up =>green  and gapdown =>red
//  bob303 
// only EXPLORATION.

_SECTION_BEGIN("GapExplo");
gapTF = textt = 0 ;
Filter = ( GapDown() OR GapUp() ) AND LLV(Volume,21) > 50000 ;
Color = IIf(Ref(Low,-1) > High,colorRed,colorGreen);
gapTF = IIf(Ref(Low,-1) > High,Ref(Low,-1) - High ,Ref(High,-1) - Low);
gapTFcent = IIf(Ref(Low,-1) > High, (gapTF/Ref(Close,-1))*100,(gapTF/Ref(Close,-1))*100);
//if (Ref(Low,-1) > High,Ref(Low,-1) - High
AddTextColumn ( FullName(), "fullname",70, colorDefault,colorDefault, 150);
AddTextColumn( IndustryID(1), "industry",70,colorDefault,colorDefault, 150);
AddTextColumn( SectorID(1), "sector",70,colorDefault,colorDefault, 150);
AddTextColumn ( WriteIf(gapTF>0,"","") , "GAP", 70, colorDefault,color, 70);
AddColumn (gapTF, "diff",1.2,Color, colorDefault,-1,gapTF);
AddColumn (gapTFcent, "diff%",1.2,Color, colorDefault,-1,gapTFcent);
_SECTION_END();
// 
//

1 comments

1. bob303

like it

Leave Comment

Please login here to leave a comment.

Back