Recent content by FXInternals

  1. F

    iCustom MT4

    The best way I have found to do this is: //fill in the results for the all bars with the Y indicator into a non // display buffer for( int i = 0; i < (Bars - ExtCountedBars); i++) { dYBuffer[i] = iCustom(SymbolName(),0,"Y", Param1, Param2...); } //Put the AVERAGE of the...
  2. F

    Coder MT4

    Yes, that is different. However it does add some complexity: 1) How would you color your candles, what is a bull candle and what is a bear candle? 2) You would lose all open / close information on the candle, do you care or have a different idea how to get that info?
  3. F

    Coder MT4

    You can do what you want by just changing the settings on your chart. For a black background chart: 1) Select pair and make it a candlestick chart. 2) Right click and select properties. 3) On the color tab use the following settings: Bar Up = Black Bar Down = Black Bull Candle = Green Bear...
Top