Heatmap 105
30 USD
Démo téléchargée:
187
Publié:
28 août 2014
Version actuelle:
1.21
Vous ne trouvez aucun robot qui vous convient ?
Commandez le vôtre
dans la section Freelance
Aller à la section Freelance
Commandez le vôtre
dans la section Freelance
Comment acheter un robot de trading ou un indicateur
Exécutez votre EA sur
hébergement virtuel
hébergement virtuel
Test un indicateur/robot de trading avant d'acheter
Vous voulez gagner de l'argent sur Market ?
Comment présenter un produit pour qu'il se vende bien
Vous manquez des opportunités de trading :
- Applications de trading gratuites
- Plus de 8 000 signaux à copier
- Actualités économiques pour explorer les marchés financiers
Inscription
Se connecter
Vous acceptez la politique du site Web et les conditions d'utilisation
Si vous n'avez pas de compte, veuillez vous inscrire

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.