RSI of Moving Average - page 14

 

Follow-Up on RSI of a Couple of Moving Averages

Kalenzo:
Interesting, however in this article they used moving average of rsi, and my indicator is rsi of moving average This is totaly different. But as fxbs said probably it would be good idea to have rsi of couple different moving averages Isn't it ? Well I will prepare some in next week, including description how to create your own custom rsioma (if someone will not do it before me) But now we have a weekend time and I'm going to party now! So take care Traders!!! See you tommorow!

Kalenzo,

I am trying to further develop an EA based on the separation distance of two MA's and am very interested in creating my own custom rsioma. After reading through this thread, I don't believe you ever did anything more on this concept. Could I twist your arm to go ahead and develop this? I might even be interested in having you revise the present coding (done by Nick Beluck) to further the development of this EA.

Trader1

 
Trader1:
Kalenzo,

I am trying to further develop an EA based on the separation distance of two MA's and am very interested in creating my own custom rsioma. After reading through this thread, I don't believe you ever did anything more on this concept. Could I twist your arm to go ahead and develop this? I might even be interested in having you revise the present coding (done by Nick Beluck) to further the development of this EA.

Trader1

Trader1,

I think that would be a good idea. Hopefully Kalenzo don't mind.......

NY168

 
NY168:
Please Increase ---> help us to add the alert? NY168

Anyone or Increase to help this indicator add the alert? Please help!

NY168

 

arsioma bells&wissles

interesting idea, Kalenzo, do it beckwards...hell not standard

i see soon we gonna add all bells and wissels,- hook it to zlgma, lsma, jma, satl, etc; xpma has switching options

4 now, some mods 2 make it more user-friendly, tell me what you think:

------------------------------------------------

Not an ind. , just pieces of code!

#property indicator_separate_window

#property indicator_minimum -10

#property indicator_maximum 103

#property indicator_buffers 5

#property indicator_color1 Blue //RSIBuffer

#property indicator_color2 Red //bdn

#property indicator_color3 Green //bup

#property indicator_color4 Magenta //sdn

#property indicator_color5 DodgerBlue //sup

#property indicator_width1 2

//#property indicator_width2 1

#property indicator_width4 2

#property indicator_width5 2

#property indicator_levelcolor Goldenrod

#property indicator_level1 80

#property indicator_level2 50

#property indicator_level3 20

//---- input parameters

extern int RSIOMA = 14;

extern color RSIBufferColor = Blue;

extern color BdnColor= Red;

extern color BupColor = Green;

extern color SdnColor = Magenta;

extern color SupColor = DodgerBlue;

extern string note1 = "RSIOMA Levels";

extern int BuyTrigger = 80;

extern int SellTrigger = 20;

extern int MainTrendLong = 50;

extern int MainTrendShort = 50;

//extern color LevelColor = Yellow;

//---- buffers

double RSIBuffer[];

double PosBuffer[];

double NegBuffer[];

double bdn[],bup[];

double sdn[],sup[];

//+------------------------------------------------------------------+

//| Custom indicator initialization function |

//+------------------------------------------------------------------+

int init()

{

string short_name;

//---- 2 additional buffers are used for counting.

IndicatorBuffers(7);

SetIndexBuffer(0,RSIBuffer);

SetIndexBuffer(1,bdn);

SetIndexBuffer(2,bup);

SetIndexBuffer(3,sdn);

SetIndexBuffer(4,sup);

SetIndexStyle(0,DRAW_LINE, RSIBufferColor);

SetIndexStyle(1,DRAW_HISTOGRAM,BdnColor);

SetIndexStyle(2,DRAW_HISTOGRAM,BupColor);

SetIndexStyle(3,DRAW_HISTOGRAM,SdnColor);

SetIndexStyle(4,DRAW_HISTOGRAM,SupColor);

SetIndexLabel(0,"RSIOMA");

SetIndexLabel(1,"Bdn");

SetIndexLabel(2,"Bup");

SetIndexLabel(3,"Sdn");

SetIndexLabel(4,"Sup");

SetIndexBuffer(5,PosBuffer);

SetIndexBuffer(6,NegBuffer);

short_name="RSIOMA("+RSIOMA+")";

IndicatorShortName(short_name);

SetIndexDrawBegin(0,RSIOMA);

//----

return(0);

}

//+------------------------------------------------------------------+

//| Relative Strength Index |

//+------------------------------------------------------------------+

int start()

{

SetLevelValue(0, BuyTrigger);

SetLevelValue(1, SellTrigger);

SetLevelValue(2, MainTrendLong);

SetLevelValue(3, MainTrendShort);

// SetLevelStyle(STYLE_DOT, 1,LevelColor );

// SetLevelStyle(STYLE_DOT, 1,Yellow );

int i,counted_bars=IndicatorCounted();

double rel,negative,positive;

--//-- Not an ind. , just pieces of code!

Files:
arsioma3.gif  28 kb
 

Oh... RSIOMA_v2 lite

Files:
 

?????????????????????????????????????????????

Hi everyone,

Any of you had tried in lower time frame of this indicator ?

30Min/15Min ?

or

4H/1H

Judy

 

RSIOMA Histogram

Hi, The Great fxbs...

Would you modify the histogram in the indi to be green or red Just when the RSI and the MA in crossing...please..

it will be the great indi like the great man like you....

Best Regards,

IIN

 
iinzall:
Hi... IIN

Easy, IIN, pls, don't do that...

BTW, here is Kaligula - The Great

 
iinzall:
...

Would you modify the histogram in the indi to be green or red Just when the RSIOMA and the MaRsioma crossing...

IIN

No, no, IIN, that's undermines the whole idea...

why don't we just stick bigger dots(arrows) or something

plus i'm out of buffers

 

No Matter

It's ok, just an idea....

Yes, Kaligula is great, Kalenzo is great, and You're still the great guy...fxbs

Best Regards,

IIN

Reason: