la fonction “coloured ” doit etre remplacer par “ENDIF”
Forums › ProRealTime forum Français › Support ProBuilder › la fonction “coloured ” doit etre remplacer par “ENDIF”
- This topic has 2 replies, 2 voices, and was last updated 1 year ago by FXtonio.
Viewing 3 posts - 1 through 3 (of 3 total)
-
-
01/30/2023 at 12:28 PM #208755
Bonjour à tous
j’ai un problème avec ce code:
12345678910111213141516171819202122MMS5=Average[2]MMS35=Average[35]condition1= MMS5 crosses over MMS35condition2= MMS35 crosses over MMS5IF condition1 THENACHAT1 = 1elseACHAT1 = 0ENDIFIF condition2 THENVENTE1 = -1ELSEvente1 = 0ENDIFif ACHAT1<>0 thendrawarrowup(barindex,low-averagetruerange[14]*1.5)coloured(255,215,0)elsif vente1<>0 thendrawarrowdown(barindex,high+averagetruerange[14]*1.5)coloured(255,0,255)endifreturn// ACHAT1 as "ACHAT1", VENTE1 as "VENTE1",0Sur pro real time ils me disent que la fonction “coloured ” doit etre remplacer par “ENDIF”
Quelqu’un saurait comment faire svp? le code ne doit pas etre changer pour que l’indicateur fonctionne.
01/30/2023 at 12:57 PM #208757Le code n’est pas correct, sans doute à cause d’un mauvais copier/coller, l’instruction COLOURED doit se trouver à la suite des instructions graphiques aux lignes 16 et 19, soit comme ceci:
1234567891011121314151617181920MMS5=Average[2]MMS35=Average[35]condition1= MMS5 crosses over MMS35condition2= MMS35 crosses over MMS5IF condition1 THENACHAT1 = 1elseACHAT1 = 0ENDIFIF condition2 THENVENTE1 = -1ELSEvente1 = 0ENDIFif ACHAT1<>0 thendrawarrowup(barindex,low-averagetruerange[14]*1.5)coloured(255,215,0)elsif vente1<>0 thendrawarrowdown(barindex,high+averagetruerange[14]*1.5)coloured(255,0,255)endifreturn// ACHAT1 as "ACHAT1", VENTE1 as "VENTE1",01 user thanked author for this post.
01/30/2023 at 1:02 PM #208760 -
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)