View Single Post
  #26 (permalink)  
Old 06-26-2007, 02:21 PM
Linuxser's Avatar
Linuxser Linuxser is offline
User Root
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 4,410
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
Quote:
Originally Posted by Kalenzo View Post
Hello Traders!
I made some modifications to RSIOMA.
Here are the additional parameters:

With those two you can choose the base of calculations of rsioma

int RSIOMA_MODE = MODE_EMA;
int RSIOMA_PRICE = PRICE_CLOSE;

Those two let you decide of the moving average period and type that you wish to use as a moving average of RSIOMA.

int Ma_RSIOMA = 21,
Ma_RSIOMA_MODE = MODE_EMA;


The rest params lets you decide about the colors of the leves which are plot on the chart, and decides of colors of histogram.

extern color BuyTriggerColor = DodgerBlue;
extern color SellTriggerColor = Magenta;
extern color MainTrendLongColor = Red;
extern color MainTrendShortColor = Green;
Bravo!!!
Reply With Quote