
06-26-2007, 02:21 PM
|
 |
User Root
|
|
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 4,410
|
|
Quote:
Originally Posted by Kalenzo
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!!! 
|