Search found 15 matches

by philippeB
14 Dec 2021 12:42
Forum: WHS NanoTrader
Topic: Transformée de Fisher
Replies: 2
Views: 9029

Re: Transformée de Fisher

Apparemment le compilateur n'aime pas les "" dans la fonction plotcrossinglines. Cela bloque mais le compilateur ne fait pas de recommandation de correction. En corrigeant le code l'indicateur s'affiche mais ce n'est peut-être pas ce que l'auteur avait souhaite au niveau du remplissage plotcrossingl...
by philippeB
08 Dec 2021 10:39
Forum: WHS NANOTRADER - EXPRESS PROGRAMMING
Topic: Kommastellen bei Kurswerten
Replies: 8
Views: 9907

Re: Kommastellen bei Kurswerten

Be careful of one thing, your trailing stop is very tight and you may have a red card if the stop move too close than the current close with effect that the stop is rejected. ll=lowest(low,1); hh=highest(high,2); longstop=(((hh-ll)/2)+ll); Normally with a high/low stop we use a look back period of 2...
by philippeB
07 Dec 2021 03:36
Forum: WHS NANOTRADER - EXPRESS PROGRAMMING
Topic: Kommastellen bei Kurswerten
Replies: 8
Views: 9907

Re: Kommastellen bei Kurswerten

Look inside the code I made a modification from your original code this is why it does not work: Value1=entrypriceoriginal()+$Value1; instead of your original code Value1=$Value1; Value2=entrypriceoriginal()+$Value2; instead of Value2=$Value2; With this you can use the stop for whatever market, you ...
by philippeB
06 Dec 2021 06:30
Forum: WHS NANOTRADER - EXPRESS PROGRAMMING
Topic: Kommastellen bei Kurswerten
Replies: 8
Views: 9907

Re: Kommastellen bei Kurswerten

The condition you write is working fine for the breakeven as you move only once the stop and it will stay at this level at all time. For the Trailing you need to move the stop every time you have a change in value after you cross above your level2. you have to use a new serie stoplevel and at each b...
by philippeB
03 Dec 2021 13:30
Forum: WHS NANOTRADER - EXPRESS PROGRAMMING
Topic: Kommastellen bei Kurswerten
Replies: 8
Views: 9907

Re: Kommastellen bei Kurswerten

$Stop(1.0,100.0,30.0,0.1,1) 1.0 to 100.0 range for parameters 30.0 default value 0.1 increment step you can change to 0.2 or whatever 1 number of decimal If you want more decimal you have to change for all: $Stop(1.00,100.00,30.00,0.01,2) you can change increment to be 0.25 instead of 0.01 so value ...
by philippeB
03 Dec 2021 10:32
Forum: WHS NANOTRADER - EXPRESS PROGRAMMING
Topic: WL BAR
Replies: 2
Views: 9589

Re: WL BAR

bonjour, Il faut utiliser renkohigh et renkolow et suivant que c'est une bougie haussiere blanche ou une bougie rouge baissiere le haut et le bas de la WL barre sont calcules differemment. Ci dessous un petit code qui permet de voir la difference entre high, low et les wlbars. En faisant un click dr...
by philippeB
01 Oct 2021 04:49
Forum: WHS NANOTRADER - EXPRESS PROGRAMMING
Topic: Sentimentor et inversion de position
Replies: 2
Views: 8746

Re: Sentimentor et inversion de position

aerofranck.jpg Il faut decocher la case "MetaSentimentor can close position" en bas a gauche dans les parametres du systeme. Si nous laissons la case "MetaSentimentor can close position" cochee voici le comportement du systeme en fonction des seuils 76, 24, 40, 60. Ces seuils peuvent soit fermer un...
by philippeB
24 Aug 2021 07:17
Forum: WHS NanoTrader
Topic: Daten in Zwischenablage exportieren
Replies: 2
Views: 8821

Re: Daten in Zwischenablage exportieren

When you click the button "export to clipboard" it is the same as you click "copy" in excel. So you go to excel and you click "paste" to the cell where you want your data to be copied and you will see all the trade in your excel.
by philippeB
15 Jun 2021 12:18
Forum: WHS NANOTRADER - EXPRESS PROGRAMMING
Topic: Filtre entre indicateur enveloppeMMA et moyenne mobile
Replies: 4
Views: 10949

Re: Filtre entre indicateur enveloppeMMA et moyenne mobile

Les bandes sont calculees en multiple de l'ecart type, c'est la meme chose que pour les bandes de Bollinger. Si tu veux des bandes paralleles il faut prendre une distance en point, tick ou en % en +/- par rapport a l'EMA. Remplace les lignes EMAHigh=EMA+($sigma*sigma); EMALow=EMA-($sigma*sigma); Par...

Go to advanced search