PureBytes Links
Trading Reference Links
|
Good idea - or in a more generalized form:
P = ParamField("Price field",-1);
oldo = O;
oldh = H;
oldl = L;
oldc = C;
oldv = V;
O = H = L = C = p;
sar_flexible = SAR();
O = oldo;
H = oldh;
L = oldl;
C = oldc;
V = oldv;
Plot( sar_flexible, _DEFAULT_NAME(), ParamColor( "Color", colorRed ),
styleDots | styleNoLine | styleThick );
> marketmonk777 wrote:
> > Wow, I was thinking of using the SAR on RSI and am a loss how to do
> > so. I always thought these functions allowed you to specific the
> > data series like MA(close,ref) where instead of close we could put
> > RSI or our own indicator.
> >
> > Would someone shed a light on how to do this?
> >
> > Thanks
>
> oldo = o;
> oldh = h;
> oldl = l;
> oldc = c;
> oldv = v;
>
> o = h = l = c = RSI( 14 );
> sar_on_rsi = SAR();
>
> o = oldo;
> h = oldh;
> l = oldl;
> c = oldc;
> v = oldv;
>
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/
|