Heatmap 105
30 USD
Download demo:
187
Publicado:
28 agosto 2014
Versão atual:
1.21
Não encontrou o robô certo? Encomende um para você
no serviço Freelance.
Ir para o Freelance
no serviço Freelance.
Como comprar um robô de negociação ou indicador?
Execute seu EA na
hospedagem virtual
hospedagem virtual
Teste indicadores/robôs de negociação antes de comprá-los
Quer ganhar dinheiro no Mercado?
Como apresentar um produto para o consumidor final?
Você está perdendo oportunidades de negociação:
- Aplicativos de negociação gratuitos
- 8 000+ sinais para cópia
- Notícias econômicas para análise dos mercados financeiros
Registro
Login
Você concorda com a política do site e com os termos de uso
Se você não tem uma conta, por favor registre-se

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.