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

export data out of files for Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
amibroker, exploration

Hi there,

you can use this AFL for exporting out of the data into a file.

Similar Indicators / Formulas

GapUp and Bearish Close (Reversal) _Daily
Submitted by indraji2001 almost 10 years ago
General Market Exploration by XeL
Submitted by xel almost 12 years ago
Scanning Gap Up and Gap Down
Submitted by vinodsk over 10 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji over 14 years ago
Vol Peak 5 Day [Scan only]
Submitted by lusmomoney over 10 years ago
TEMA_Regression Crossover
Submitted by marcheur over 10 years ago

Indicator / Formula

Copy & Paste Friendly
Filter=1;
AddColumn(O, "open",1.0);
AddColumn(H, "high",1.0);
AddColumn(L,"low",1.0);
AddColumn(C,"close",1.0);
AddColumn(Volume,"Volume",1.0);
AddColumn(abs(C-O),"CO",1.0);
AddColumn(H-L,"HL",1.0);
AddColumn(abs(O-L),"OL",1.0);
AddColumn(abs(O-H),"OH",1.0);

0 comments

Leave Comment

Please login here to leave a comment.

Back