3D Candlesticks TOPIC
Forums › ProRealTime English forum › ProBuilder support › 3D Candlesticks TOPIC
- This topic has 61 replies, 10 voices, and was last updated 4 years ago by Bard.
-
-
07/11/2018 at 8:26 AM #7576307/30/2018 at 9:42 AM #7706308/07/2018 at 1:38 AM #7767408/08/2018 at 6:10 AM #7774308/08/2018 at 3:47 PM #77783
Can you create a system with the color changes?
buy: when the candle is green
closing of buy: when the candle is yellow
Sell: when the candle is red
closing sell: candle is yellow
It is possible to integrate in a single candle: cci + rsi + stochastic + cycle + di?08/09/2018 at 4:28 AM #77816Hi
remeber that colours indicate values of the oscillator
if candle is Red the oscillator is oversold
if candle is green the oscillator is overbought
and if it’s yellow the oscillator is in the middle of its range
so to do system with this premises i think that you can use also auto programming of ptorealtime, but if you want example I’ll do it, let me know
08/09/2018 at 8:38 AM #7782708/11/2018 at 4:56 PM #7801108/14/2018 at 5:30 PM #78171Wow, @ALE that has got to be one of the coolest ideas/indicators I’ve seen.
Can more sophisticated oscillators like John Ehler’s Universal SuperSmoother Oscillator or Cynthia Kase’s Peak Oscillator be incorporated? Just a thought, but I understand if it’s too much work.Best
BardSuper Oscillators123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113//John Ehler's Universal SuperSmoother Oscillatorbandedge= 25 //Default = 25whitenoise= (Close - Close[2])/2if barindex>bandedge then// super smoother filtera1= Exp(-1.414 * 3.14159 / bandedge)b1= 2*a1 * Cos(1.414*180 /bandedge)c2= b1c3= -a1 * a1c1= 1 - c2 - c3filt= c1 * (whitenoise + whitenoise[1])/2 + c2*filt[1] + c3*filt[1]filt1 = filtif ABS(filt1)>pk[1] thenpk = ABS(filt1)elsepk = 0.991 * pk[1]endifif pk=0 thendenom = -1elsedenom = pkendifif denom = -1 thenresult = result[1]elseresult = filt1/pkendifendifRETURN result COLOURED(66,66,255) as "Universal Oscillator", 0 as "0"==========================================================================//PRC_Kase Peak Oscillator V2 | indicator//19.07.2017//Nicolas @ www.prorealcode.com//Sharing ProRealTime knowledge//translated from MT4 code// --- settingskpoDeviations= 2.0 // Kase peak oscillator deviationskpoShortCycle= 8 // Kase peak oscillator short cyclekpoLongCycle = 65 // Kase peak oscillator long cyclekpoSensitivity = 40allPeaksMode = 0 //1=true ; 0=false// --- end of settingsif barindex>kpoLongCycle*2 thenccLog = Log(Close[0]/Close[1])ccDev = std[9](ccLog)avg = average[30](ccDev)if (avg>0) thenmax1 = 0maxs = 0for k = kpoShortCycle to kpoLongCycle-1 domax1 = Max(Log(High[0]/Low[0+k])/Sqrt(k),max1)maxs = Max(Log(High[0+k]/Low[0])/Sqrt(k),maxs)nextx1 = max1/avgxs = maxs/avgendifxp= kpoSensitivity*(average[3](x1)-average[3](xs))xpAbs = Abs(xp)kpoBuffer = xpkphBuffer = xptmpVal = average[50](xpAbs)+kpoDeviations*std[50](xpAbs)maxVal = Max(90.0,tmpVal)minVal = Min(90.0,tmpVal)if (kpoBuffer > 0) thenkpdBuffer = maxValkpmBuffer = minValelsekpdBuffer = -maxValkpmBuffer = -minValendifkppbuffer=0if (not allPeaksMode) thenif (kpoBuffer[1]>0 and kpoBuffer[1]>kpoBuffer[0] and kpoBuffer[1]>=kpoBuffer[2] and kpoBuffer[1]>= maxVal) thenkppBuffer = kpoBuffer[1]endifif (kpoBuffer[1]<0 and kpoBuffer[1]<kpoBuffer[0] and kpoBuffer[1]<=kpoBuffer[2] and kpoBuffer[1]<=-maxVal) thenkppBuffer = kpoBuffer[1]endifelseif (kpoBuffer[1]>0 and kpoBuffer[1]>kpoBuffer[0] and kpoBuffer[1]>=kpoBuffer[2]) thenkppBuffer = kpoBuffer[1]endifif (kpoBuffer[1]<0 and kpoBuffer[1]<kpoBuffer[0] and kpoBuffer[1]<=kpoBuffer[2]) thenkppBuffer = kpoBuffer[1]endifendifendifreturn kphBuffer coloured(105,105,105) style(histogram), kpoBuffer coloured(105,105,105) style(line,2), kpdBuffer coloured(255,0,255), kpmBuffer coloured(0,191,255), kppBuffer coloured(255,0,255) style(histogram,2)//105,105,105=grey//255,0,255=pink//0,191,255=blue08/17/2018 at 11:09 AM #7843908/17/2018 at 2:04 PM #7846708/18/2018 at 10:43 AM #7852109/01/2018 at 4:48 PM #79526Hi Ale
I hope you has passed great holidays.
The indicator is very interesting, have you been able to use this indicator in a automated strategy ?
Thank you a lot
09/02/2018 at 9:48 AM #7955309/02/2018 at 9:52 AM #79556 -
AuthorPosts
Find exclusive trading pro-tools on