Just recently installed ProTrader3, and thought I'd give Marilyn a run on it...
ProTrader automatically detects whether you're importing an Empty4 EA or indicator, and places it in the correct folder. Sergey Kovalyov explained that it does this by looking for the following keywords in the code...
Code: Select all
SetIndexBuffer
SetIndexStyle
SetIndexArrow
indicator_chart_window
indicator_separate_window
indicator_color
indicator_level
indicator_buffers
I removed the following lines from Marilyn...
Code: Select all
SetIndexStyle(0, DRAW_ARROW, 0, 3);
SetIndexStyle(1, DRAW_ARROW, 0, 3);
SetIndexStyle(2, DRAW_ARROW, 0, 1);
SetIndexStyle(3, DRAW_ARROW, 0, 1);
SetIndexArrow(0, 218);
SetIndexArrow(1, 217);
SetIndexArrow(2, 218);
SetIndexArrow(3, 217);
Now I can finally work out what all the settings do, and how to adjust them
Just thought I'd drop this in here in case anyone decides to give Marilyn a run on PT3.
Have fun!
Radar =8^)