Heatmap 105
30 USD
Versione demo scaricata:
187
Pubblicato:
28 agosto 2014
Versione attuale:
1.21
Non hai trovato un robot adatto?
Ordina il tuo
su Freelance
Vai alla sezione Freelance
Ordina il tuo
su Freelance
Come acquistare un Robot di Trading o un indicatore
Esegui il tuo EA
hosting virtuale
hosting virtuale
Prova un indicatore/robot di trading prima di acquistarlo
Vuoi guadagnare nel Market?
Come presentare un prodotto per venderlo con successo
Ti stai perdendo delle opportunità di trading:
- App di trading gratuite
- Oltre 8.000 segnali per il copy trading
- Notizie economiche per esplorare i mercati finanziari
Registrazione
Accedi
Accetti la politica del sito e le condizioni d’uso
Se non hai un account, registrati

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.