[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[amibroker] 2nd Call for help: filled RSI region for overbought & oversold condition


  • To: "'amibroker@xxxxxxxxxxxxxxx'" <amibroker@xxxxxxxxxxxxxxx>
  • Subject: [amibroker] 2nd Call for help: filled RSI region for overbought & oversold condition
  • From: "Habibur Md. Rahman Planning Networks" <habib@xxxxxxxxxxxxxxxx>
  • Date: Tue, 31 Mar 2009 14:37:32 +0600
  • Accept-language: en-US
  • Acceptlanguage: en-US
  • Sensitivity: personal
  • Thread-topic: 2nd Call for help: filled RSI region for overbought & oversold condition

PureBytes Links

Trading Reference Links

I was trying to fill the area of RSI when it is greater than 70 or less than 30, changed the color based on the value of RSI and then used PlotOHLC function with styleCloud. But the output is not smooth...

Here is the code:

periods = Param( "Periods", 15, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style")  );
mycolor = IIf(RSI(periods) <30, colorGreen,colorRed);
Up_Th = IIf(RSI(periods) <30, 30, RSI(periods));
Low_Th = IIf(RSI(periods) >70, 70, RSI(periods));

 PlotOHLC(Up_Th, Up_Th, Low_Th, Low_Th, "", mycolor, styleCloud);

The output is not smooth. My assumption is OHLC plot probably considers an individual day not a point, For example, When RSI advances value from 68 to 73 in a day this OHLC function fills the total range and hence not smooth enough. I saw image of others plot of same thing which perfectly plot the exact crossing point. It seems some other efficient function/way is there.

Can someone please help?

Regards
Habib

 



__._,_.___


**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.

TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com

TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/





Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___