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 to CSV.afl for Amibroker (AFL)

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

Export to CSV

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn almost 13 years ago
3_6Day GuaiLiLv
Submitted by motorfly almost 13 years ago
Williams Alligator System
Submitted by durgesh1712 about 13 years ago
Interactive Linear Regression Channel
Submitted by InternetWorm almost 13 years ago
*Level Breakout system*
Submitted by Tinych about 13 years ago

Indicator / Formula

Copy & Paste Friendly
fh = fopen( "c:\\AmiBackup\\"+Name()+".csv", "w"); 
if( fh ) 
{ 
fputs( "Ticker,Date,Open,High,Low,Close,Volume \n", fh ); 
y = Year(); 
m = Month(); 
d = Day(); 
//r = Hour();
//e = Minute();
//n = Second();
for( i = 0; i < BarCount; i++ ) 
{ 
fputs( Name() + "," , fh );
ds = StrFormat("%02.0f-%02.0f-%02.0f,", 
y[ i ], m[ i ], d[ i ] ); 
fputs( ds, fh ); 

//ts = StrFormat("%02.0f:%02.0f:%02.0f,", 
//r[ i ],e[ i ],n[ i ] ); 
//fputs( ts, fh ); 

qs = StrFormat("%.4f,%.4f,%.4f,%.4f,%.0f\n", 
O[ i ],H[ i ],L[ i ],C[ i ],V[ i ] ); 
fputs( qs, fh ); 
} 

fclose( fh ); 
} 

Buy = 0;

3 comments

1. Nahid

Please explain how this afl works.

2. classy

ya me too.how it works?

3. ricky

THX!!

Leave Comment

Please login here to leave a comment.

Back