MACD Platinum
Forums › ProRealTime Deutsch forum › ProBuilder Support › MACD Platinum
- This topic has 4 replies, 3 voices, and was last updated 6 years ago by Frank Lemke.
Viewing 5 posts - 1 through 5 (of 5 total)
-
-
12/20/2017 at 7:32 PM #56168
hallo vielleicht kann mir jemand helfen .
Ich möchte der MACD Platinum von nicolas so programieren das er mir die signale als pfeil im chart anzeit long und short richtung nur leider fehlt mir die kenntnis dazu.
mfg frank
12/21/2017 at 9:09 AM #56195Ich kann Ihnen helfen, Signale mit dem MACD Platinum-Indikator zu generieren, aber könnten Sie mir bitte besser erklären, welche Signale Sie daraus erhalten möchten?
12/21/2017 at 10:04 AM #56206Ich habe das so gelöst
MACD Platinum im PreisChart12345678910111213141516171819202122232425262728293031//PRC_MACD Platinum | indicator//29.09.2016//Nicolas @ www.prorealcode.com//Sharing ProRealTime knowledge// --- settingsshort = 12long = 26signal = 9// --- end of settingsEMAshort1 = exponentialaverage[short](close)EMAshort2 = exponentialaverage[short](EMAshort1)DifferenceShort = EMAshort1 - EMAshort2ZeroLagShort = EMAshort1 + DifferenceShortEMAlong1 = exponentialaverage[long](close)EMAlong2 = exponentialaverage[long](EMAlong1)DifferenceLong = EMAlong1 - EMAlong2ZeroLagLong = EMAlong1 + DifferenceLongZeroLagMACD = ZeroLagShort - ZeroLagLongsignal1=ExponentialAverage[signal](ZEROLAGMACD)signal2=ExponentialAverage[signal](signal1)DIFFERENCE2=signal1-signal2SignalMACD=signal1+DIFFERENCE2IF time >= 080000 and time<=210000 Thenif signalMACD >= zerolagMACD and zerolagMACD crosses under signalMACD thendrawarrowdown(barindex,high +4*pointsize)coloured(54,224,208)EndifIf signalMACD <= zerolagMACD and zerolagMACD crosses over signalMACD thendrawarrowup(barindex,low-4*pointsize) coloured (54,224,208)EndifEndifRETURN1 user thanked author for this post.
12/21/2017 at 10:05 AM #56207hallo ich möchte wenn der MACD ein signal anzeigt das es im Preischart über den Balken sichtbar wird als Pfeil.
12/21/2017 at 10:13 AM #56209Danke JohnScher👍 das wirklich top
-
AuthorPosts
Viewing 5 posts - 1 through 5 (of 5 total)