in metastock we call a custom indicator by using fml("custom name") but there does not seem a similar method here....
there are countless examples of calling the standard inticators,, such as,,
--------------------------
MacdPrevious = iMACD(NULL, 1440, 12, 26, 9, PRICE_CLOSE, MODE_MAIN, 1);
MacdPrevious2 = iMACD(NULL, 1440, 12, 26, 9, PRICE_CLOSE, MODE_MAIN, 2);
OsMAPrevious = iOsMA(NULL, 1440, 12, 26, 9, PRICE_CLOSE, 1);
OsMAPrevious2 = iOsMA(NULL, 1440, 12, 26, 9, PRICE_CLOSE, 2);
Williams = iWPR(NULL, 1440, WilliamsP, 1);
---------------------------------------------
but can't seem to find any example of calling my own indicator....
can anyone recall seeing an example.... i can strip out the code needed if someone has an example..... thanks.....h