Heatmap 105
30 USD
Descargado demo:
187
Publicado:
28 agosto 2014
Versión actual:
1.21
¿No ha encontrado el robot adecuado?
Encargue el suyo
en la bolsa Freelance.
Pasar a la bolsa
Encargue el suyo
en la bolsa Freelance.
Cómo comprar un robot comercial o indicador
Inicia el robot en el
hosting virtual
hosting virtual
Pruebe un indicador/robot comercial antes de comprarlo
¿Quieres ganar en el Market?
Cómo ofrecer un producto para que lo compren
Está perdiendo oportunidades comerciales:
- Aplicaciones de trading gratuitas
- 8 000+ señales para copiar
- Noticias económicas para analizar los mercados financieros
Registro
Entrada
Usted acepta la política del sitio web y las condiciones de uso
Si no tiene cuenta de usuario, regístrese

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.