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

3_6Day GuaiLiLv for Amibroker (AFL)
motorfly
almost 13 years ago
Amibroker (AFL)

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

Forcast tomorrow price.

Screenshots

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn 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
Horizontal Live Priceline Tool
Submitted by northstar about 13 years ago

Indicator / Formula

Copy & Paste Friendly
//3_6Day GuaiLiLv
tomorrow_trans=2*Ref(C,-2)-Ref(C,-5);
at_trans=2*Ref(C,-1)-Ref(C,-4);
aat_trans=2*C-Ref(C,-3);
today_trans=((Ref(C,-3) * 2) - Ref(C,-6));
Plot(today_trans, "today",IIf(today_trans>=Ref(today_trans,-1),colorRed,colorGreen ));
Plot(tomorrow_trans , "tomorrow", colorBlue,maskPrice); 
Plot(at_trans , "A_tomorrow", colorViolet, maskPrice ); 
Plot(aat_trans , "3 days later", colorGrey50, maskPrice );
_SECTION_BEGIN("Price1");
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();

2 comments

1. ole

What is the logic for this? For the samples that I tested I don’t see very accurate forecasts. Do you? If so, please give some examples.

2. xavier

http://coco-in.net/viewthread.php?tid=1436&extra=&page=1

Leave Comment

Please login here to leave a comment.

Back