enveloppe parametrable sur la VWAP
Forums › ProRealTime forum Français › Discussions générales sur le Trading › enveloppe parametrable sur la VWAP
- This topic has 7 replies, 2 voices, and was last updated 7 months ago by Iván.
Viewing 8 posts - 1 through 8 (of 8 total)
-
-
03/26/2024 at 5:18 PM #23051103/27/2024 at 4:02 PM #23059003/29/2024 at 8:30 AM #23068003/29/2024 at 12:10 PM #230704
D'accord. Ici, tu es. Changer la variable Dist pour que la ligne bleue soit modifiée.
12345678910111213141516// Volume Weighted Moving Average (VWMA)// By Gabor Gulyas Oct. 2019tempValue = 0.0tempVolume = 0.0for step = 0 to length dotempValue = tempValue + (close[step] * volume[step])tempVolume = tempVolume + volume[step]nextvwma = tempValue / tempVolumedist = 2 // % offsetvwmaDist = vwma + dist/100*vwmareturn vwma coloured("Red")style(line,2), vwmaDist coloured("blue")style(dottedline)04/01/2024 at 9:05 PM #23085804/01/2024 at 9:08 PM #23085904/02/2024 at 9:49 AM #23087004/02/2024 at 10:59 AM #230883Il fait référence à la longueur fournie dans le fichier .itf que vous avez publié dans ce fil de discussion. Quoi qu'il en soit, voici le code avec la longueur par défaut :
1234567891011121314151617// Volume Weighted Moving Average (VWMA)// By Gabor Gulyas Oct. 2019length = 20tempValue = 0.0tempVolume = 0.0for step = 0 to length dotempValue = tempValue + (close[step] * volume[step])tempVolume = tempVolume + volume[step]nextvwma = tempValue / tempVolumedist = 2 // % offsetvwmaDist = vwma + dist/100*vwmareturn vwma coloured("Red")style(line,2), vwmaDist coloured("blue")style(dottedline) -
AuthorPosts
Viewing 8 posts - 1 through 8 (of 8 total)