Résoudre une équation à 1 inconnue
Forums › ProRealTime forum Français › Support ProBuilder › Résoudre une équation à 1 inconnue
- This topic has 4 replies, 2 voices, and was last updated 1 month ago by JS.
Viewing 5 posts - 1 through 5 (of 5 total)
-
-
09/28/2024 at 7:30 AM #238176
Bonjour,
j’aimerais tester un truc, mais je ne sais pas si c’est possible. Je voudrais savoir à quel niveau de moyenne mobile simple correspond un prix.
Grosse modo je voudrais résoudre cette équation :
Close = summation[x](close)/X
X=???
Je sais pas si c’est assez clair ? Possible ou pas ?
Merci d’avance pour votre réponse :).
09/28/2024 at 1:05 PM #238186Salut,
Je l’ai essayé pour vous, mais la chance que la moyenne soit exactement égale au prix est négligeable…
Matching Moving Average123456789101112131415Found=0N=1000 //Maximum PeriodCloseTarget = Close // The closing price you're comparing againstFOR x = 2 TO N // You can adjust to any maximum period you wantSMAX = average[x](Close) // Calculate the moving average for X periodsIF (SMAX = CloseTarget) THENFound = 1break // Stop the loop when a match is foundENDIFNEXTDrawText("x=#x#", BarIndex, High+5)DrawText("Found=#Found#",BarIndex, Low-5)RETURN09/28/2024 at 2:41 PM #238196Bonjour,
Un grand merci !!! après quelques modifications, j’y suis arrivé. C’est déjà pas mal comme résultat, mieux que rien ^^
j’ai rajouté un screenshot pour une idée du visuel.
123456789101112131415161718192021222324Found=0N=100 //Maximum PeriodCloseTarget = high// The closing price you're comparing againstFOR x = 2 TO N // You can adjust to any maximum period you wantSMAX = average[x](Close) // Calculate the moving average for X periodsIF (SMAX => CloseTarget-5 and SMAX<=closetarget+5) THENFound = 1//DrawText("x=#x#", BarIndex, High+5)//DrawText("Found=#Found#",BarIndex, Low-5)//ELSE//found=0break // Stop the loop when a match is foundENDIFNEXTc1= found=1 and smax=Average[7](close)if c1 THENDrawText("x=#x#", BarIndex, High+5)endifRETURN c1//smax09/28/2024 at 2:47 PM #23819809/28/2024 at 3:04 PM #238199 -
AuthorPosts
Viewing 5 posts - 1 through 5 (of 5 total)