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

1 hour stoch for Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
oscillator, trading system, amibroker

Hello,

I have made a few changed to the stoch indicator so that it can produce buy sell arrows for a day trader with a one hour time frame.

Warm regards
Siddhisagar

Screenshots

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Price Oscillator
Submitted by ariful_islam over 13 years ago
Heikin-Ashi Candles Oscillator for Long term
Submitted by NTA over 11 years ago
TSI V.2
Submitted by Anonymous over 11 years ago
Stochastic
Submitted by expert over 13 years ago
ZeroLag RSI with Buy/Sell
Submitted by erecruiters almost 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("stochastic 1 hourly");
TimeFrameSet(1*inHourly);
slow=StochD(5,3,3);
fast=StochK(5,3);
TimeFrameRestore();
_SECTION_END();

Buy=TimeFrameExpand(slow, 1*inHourly) < TimeFrameExpand(fast, 1*inHourly);
Sell=TimeFrameExpand(slow, 1*inHourly) > TimeFrameExpand(fast, 1*inHourly);

Plot( slow , "slow#1", colorDarkYellow, styleLine );
Plot( fast , "fast#2", colorRed, styleLine);

PlotShapes((Buy ) * shapeUpArrow, colorGreen); 
PlotShapes((Sell ) * shapeDownArrow,colorRed );

0 comments

Leave Comment

Please login here to leave a comment.

Back