I need your HEAT MAP layout with other signal about colors. Do you can change it ? I have indicator than show me signals BUY and SELL and I need show this signal in your HEAT MAP.
I need your HEAT MAP layout with other signal about colors. Do you can change it ? I have indicator than show me signals BUY and SELL and I need show this signal in your HEAT MAP.
Возможно ли добавить в индикатор функцию отображения информации в зависимости от того на каком тайм фрейме расположен индикатор, на дневном дневные, на недельном недельные итд...
It would do fine. if it were possible to prescribe the currency indicator settings are necessary for viewing.
Hi
I need your HEAT MAP layout with other signal about colors. Do you can change it ? I have indicator than show me signals BUY and SELL and I need show this signal in your HEAT MAP.
Regards
Luiz Uchoa
Hi
I need your HEAT MAP layout with other signal about colors. Do you can change it ? I have indicator than show me signals BUY and SELL and I need show this signal in your HEAT MAP.
Regards
Luiz Uchoa
Suggestions:
//Idea Borrowed from Mr. Mladen #define _setMinutePrice(_priceType,_target,_index) { \ switch(_priceType) \ { \ case _PRICE_CLOSE: _target = _MinuteRates[_index].close; break; \ case _PRICE_OPEN: _target = _MinuteRates[_index].open; break; \ case _PRICE_HIGH: _target = _MinuteRates[_index].high; break; \ case _PRICE_LOW: _target = _MinuteRates[_index].low; break; \ case _PRICE_MEDIAN: _target = (_MinuteRates[_index].high+_MinuteRates[_index].low)/2.0; break; \ case _PRICE_TYPICAL: _target = (_MinuteRates[_index].high+_MinuteRates[_index].low+_MinuteRates[_index].close)/3.0; break; \ case _PRICE_WEIGHTED: _target = (_MinuteRates[_index].high+_MinuteRates[_index].low+_MinuteRates[_index].close+_MinuteRates[_index].close)/4.0; break; \ case _PRICE_OHLC: _target = (_MinuteRates[_index].open+_MinuteRates[_index].high+_MinuteRates[_index].low+_MinuteRates[_index].close)/4.0; break; \ case _PRICE_HARMONIC_MEDIAN: _target = 2.0/(1.0/_MinuteRates[_index].high+1.0/_MinuteRates[_index].low); break; \ case _PRICE_HARMONIC_TYPICAL: _target = 3.0/(1.0/_MinuteRates[_index].high+1.0/_MinuteRates[_index].low+1.0/_MinuteRates[_index].close); break; \ case _PRICE_HARMONIC_WEIGHTED: _target = 4.0/(1.0/_MinuteRates[_index].high+1.0/_MinuteRates[_index].low+1.0/_MinuteRates[_index].close+1.0/_MinuteRates[_index].close); break; \ case _PRICE_HARMONIC_OHLC: _target = 4.0/(1.0/_MinuteRates[_index].open+1.0/_MinuteRates[_index].high+1.0/_MinuteRates[_index].low+1.0/_MinuteRates[_index].close); break; \ default : _target = 0; \ }} //Also, the price is Close/PrevClose.
An intraday mode (calculated from the first minute bar), is an excellent choice for day traders.