PureBytes Links
Trading Reference Links
|
The indicator is already in afl section but it doesn't
scan in intraday. btw find below the metastock code:
Col F : If(ROC(ADX(14),3,$) =
Sum(Abs(ROC(ADX(14),1,$)),3), {rising ADX} +1,
If(ROC(ADX(14),3,$) = -Sum(Abs(ROC(ADX(14),1,$)),3),
{falling ADX} -1,0))
Col E = Stoch
Cross(Stoch(5,3),30) - Cross(70,Stoch(5,3))
{Sto-wave will equal +1 when a buy signal is
generated, -1 when is a sell signal is generated, and
0 when there is no signal}
ColD=Macd
If( MACD() > Mov( MACD(),9,E),
If( Ref( MACD(),-1) < Ref( Mov( MACD(),9,E),-1),
+2 {Bullish Crossover},
+1 {Bullish}),
If( Ref(MACD(),-1) > Ref(Mov(MACD(),9,E),-1),
-2 {Bearish Crossover},
-1 {Bearish}))
ColC=Blues&RedBars
A:=Fml( "SwingTrd 2");
B:=0;
If(A>B,If( Ref(A,-1) < Ref(B,-1),
+2 {New Blue bar Bullish },
+1 {Almost blue bars}),
If( Ref(A,-1) > Ref(B,-1),
-2 {New Red Bar bearish },
-1 {Almost red bar}))
ColB= Buy&Sell Arrows
A:=Fml( "SwingTrd 2");
B:=Fml( "SwingTrd 3");
If(A>B,If( Ref(A,-1) < Ref(B,-1),
+2 {Bullish Crossover,New buy arrow},
+1 {Bullish,Almost Buy signal genarated}),
If( Ref(A,-1) > Ref(B,-1),
-2 {Bearish Crossover,New sell arrow},
-1 {Bearish}))
ColA = RMO
A:=Fml( "Rahul Mohindar Osc (RMO)");
B:=0;
If(A>B,If( Ref(A,-1) < Ref(B,-1),
+2 {new Bull},
+1 {Almost Bullish}),
If( Ref(A,-1) > Ref(B,-1),
-2 {new Bearish },
-1 {Almost Bearish}))
johnny
--- Prashanth <prash454.ta@xxxxxxxxx> wrote:
> If you could post the code here, someone maybe able
> to help.
>
> Cheers
>
> Prashanth
> ----- Original Message -----
> From: kailash pareek
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Saturday, June 23, 2007 6:26 PM
> Subject: [amibroker] RMO for intraday
>
>
> hi,
>
> I came across RMO from AFL section. But that afl
> doesn't return any exploration for intraday. If
> anyone
> have that please share.
>
> johnny
>
>
>
__________________________________________________________
> No need to miss a message. Get email on-the-go
> with Yahoo! Mail for Mobile. Get started.
> http://mobile.yahoo.com/mail
>
>
>
____________________________________________________________________________________
Choose the right car based on your needs. Check out Yahoo! Autos new Car Finder tool.
http://autos.yahoo.com/carfinder/
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|