Pfeil im Chart
Forums › ProRealTime Deutsch forum › ProBuilder Support › Pfeil im Chart
- This topic has 11 replies, 3 voices, and was last updated 2 years ago by axmichi.
Viewing 12 posts - 1 through 12 (of 12 total)
-
-
12/28/2021 at 9:37 PM #184050arrow chart12345678fast = close > high[1]slow = close > high [2]if fast and slow thenDRAWARROW(barindex-1, slow[1]) COLOURED(0,100,255,255)endifReturn
Hallo,
ich möchte gern das ein Pfeil im chart erscheint wenn c1 und c2 erfüllt sind
was ist falsch im code
Kann jemand helfen
12/28/2021 at 10:17 PM #18405212/29/2021 at 11:11 AM #18408212/29/2021 at 11:57 AM #18408712/29/2021 at 12:48 PM #18409112/29/2021 at 4:01 PM #184104Um dorthin zu gelangen, müssen Sie nur herausfinden, wie Sie die Linie nur im letzten Balken erhalten, während noch Pfeile auf allen Balken vorhanden sind?
Kann noch jemand mitmachen, wenn Sie wollen?
12345678910fast = close > high[1]slow = close > high [2]if fast and slow thenMybar = barindexDRAWARROWDOWN(mybar,high+10) COLOURED(0,100,255,255)DRAWSEGMENT(Mybar,high,Mybar +10,high) COLOURED(0,100,255,255)endifReturn12/29/2021 at 5:19 PM #18411112/29/2021 at 5:42 PM #184115Vielleicht ist das in Ordnung (habe ich noch nicht probiert):
123456789101112DEFPARAM DrawOnLastBarOnly = truefast = close > high[1]slow = close > high[2]if fast and slow thenMybar = barindexendifDRAWARROWDOWN(mybar,high+10) COLOURED(0,100,255,255)DRAWSEGMENT(Mybar,high,Mybar +10,high) COLOURED(0,100,255,255)Return12/29/2021 at 5:49 PM #184117Das ist besser:
12345678910111213DEFPARAM DrawOnLastBarOnly = truefast = close > high[1]slow = close > high[2]if fast and slow thenMybar = barindexMyHigh = highendifDRAWARROWDOWN(mybar,MyHigh*1.0005) COLOURED(0,100,255,255)DRAWSEGMENT(Mybar,MyHigh,BarIndex+10,MyHigh) COLOURED(0,100,255,255)Return1 user thanked author for this post.
12/30/2021 at 4:50 PM #18416112/30/2021 at 6:13 PM #18416301/01/2022 at 5:35 PM #184267 -
AuthorPosts
Viewing 12 posts - 1 through 12 (of 12 total)