A
AngryBeavers
Guest
Thank you very much appreciate it!
Thank you very much appreciate it!
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Gosh, i hate to keep asking but I have no idea what you mean by "Longest Chart History" Can you explain?Thank you @METAL! Something worth noting, is to make sure you are using the longest chart history available for whatever timeframe you are on. It will make the yellow candles considerably more accurate.
So on a 15 min chart the longest history is available is 90 days, or a 1 min chart would be 30 days.Gosh, i hate to keep asking but I have no idea what you mean by "Longest Chart History" Can you explain?
Chris, Is it correct for me to change the mult. in the scalper option to 1? I typically trade options. (APPL, NVDA,TSLA etc)So on a 15 min chart the longest history is available is 90 days, or a 1 min chart would be 30 days.
That worked for me for stocks...now my chart looks like the picture thanks!Chris, Is it correct for me to change the mult. in the scalper option to 1? I typically trade options. (APPL, NVDA,TSLA etc)
Yes that is the multiplier for equitiesChris, Is it correct for me to change the mult. in the scalper option to 1? I typically trade options. (APPL, NVDA,TSLA etc)
Hey Metal, Yes, I merged C3_MAX_v2 with Scalper_v3 on one monitor and have C3_MAX_v2 merged with PLD_Bands on the others so I can test them both concurrently. This week I've been trading mostly using PLD_Bands (merged with C3_MAX_v2, which I cannot live without, LOL) on a 3min chart while (always) using 10min chart (exact same setup) for confirmation (with the general guidance from 30min and 4hr charts). I wish Scalper_v3 can have just the PLD blue line added as it helps a lot (along with other indications/confirmations especially from a higher timeframe, of course, when price closes above PLD blue line = bullish, vice versa).Hey Eagle, Are you using the C3Max and scalper_V3 on the same chart? If not, how did you get the all of the same indicators as the C3Max?
Eagle, Thanks. I had not considered merging them. Do you have to make any specific changes to the strats when doing that? Would you be so kind as to share you charts. That would be a great help so i can compare what I have. Also on another note. I have been using the PLD bands on two different charts and I have never seen a blue line. Now I am wandering what is wrong with mine. (I just found out that my PLD "Plot" was disabled.Hey Metal, Yes, I merged C3_MAX_v2 with Scalper_v3 on one monitor and have C3_MAX_v2 merged with PLD_Bands on the others so I can test them both concurrently. This week I've been trading mostly using PLD_Bands (merged with C3_MAX_v2, which I cannot live without, LOL) on a 3min chart while (always) using 10min chart (exact same setup) for confirmation (with the general guidance from 30min and 4hr charts). I wish Scalper_v3 can have just the PLD blue line added as it helps a lot (along with other indications/confirmations especially from a higher timeframe, of course, when price closes above PLD blue line = bullish, vice versa).
All the latest scripts are on page 1, post #1 from Christopher84Apologies, but I'm still getting acclimated to ThinkScripts. Can someone post the code for the latest version? I know plenty of updates occur after the initial post but I dont know how to find the latest. Thx
Eagle, Thanks. I had not considered merging them. Do you have to make any specific changes to the strats when doing that? Would you be so kind as to share you charts. That would be a great help so i can compare what I have. Also on another note. I have been using the PLD bands on two different charts and I have never seen a blue line. Now I am wandering what is wrong with mine. (I just found out that my PLD "Plot" was disabled.
@Christopher84 What exactly is the confirmation level on the watchlist telling me? I thought it was the number of confirmed candles but that didn't line up with the chart so I'm a little confused. I see the 0-13 on the chart cant wrap my head around what it means, thought it was ob/os afer looking at it but then my super column shows os but the confirm column shows 0.0 lol etremely lost#Confirmation Level WL developed 04/15/2021 by Christopher Wilson #Select the level of agreement among the 15 indicators included. #Changed 05/20/21 Include CIP. #MACD with Price declare lower; def price = close; def fastLength = 12; def slowLength = 26; def MACDLength = 9; input MACD_AverageType = {SMA, default EMA}; def MACDLevel = 0.0; def fastEMA = ExpAverage(price, fastLength); def slowEMA = ExpAverage(price, slowLength); def Value; def Avg; switch (MACD_AverageType) { case SMA: Value = Average(price, fastLength) - Average(price, slowLength); Avg = Average(Value, MACDLength); case EMA: Value = fastEMA - slowEMA; Avg = ExpAverage(Value, MACDLength);} def Diff = Value - Avg; def Level = MACDLevel; def condition1 = Value[1] <= Value; #RSI input RSI_length = 14; input RSI_AverageType = AverageType.WILDERS; def NetChgAvg = MovingAverage(RSI_AverageType, price - price[1], RSI_length); def TotChgAvg = MovingAverage(RSI_AverageType, AbsValue(price - price[1]), RSI_length); def ChgRatio = if TotChgAvg != 0 then NetChgAvg / TotChgAvg else 0; def RSI = 50 * (ChgRatio + 1); def condition2 = (RSI[3] < RSI) is true or (RSI >= 80) is true; #MFI input MFI_Length = 14; def MFIover_Sold = 20; def MFIover_Bought = 80; def movingAvgLength = 1; def MoneyFlowIndex = Average(moneyflow(high, close, low, volume, MFI_Length), movingAvgLength); def MFIOverBought = MFIover_Bought; def MFIOverSold = MFIover_Sold; def condition3 = (MoneyFlowIndex[2] < MoneyFlowIndex) is true or (MoneyFlowIndex > 85) is true; #Forecast def na = Double.NaN; def MidLine = 50; def Momentum = MarketForecast().Momentum; def NearT = MarketForecast().NearTerm; def Intermed = MarketForecast().Intermediate; def FOB = 80; def FOS = 20; def upperLine = 110; def condition4 = (Intermed[1] <= Intermed) or (NearT >= MidLine); #Change in Price def lengthCIP = 5; def displace = 0; def CIP = (price - price[1]); def AvgCIP = ExpAverage(CIP[-displace], lengthCIP); def CIP_UP = AvgCIP > AvgCIP[1]; def CIP_DOWN = AvgCIP < AvgCIP[1]; def condition5 = CIP_UP; #EMA_1 input EMA_length = 12; def AvgExp = ExpAverage(price[-displace], EMA_length); def condition6 = (price >= AvgExp) and (AvgExp[2] <= AvgExp); #EMA_2 input EMA_2length = 20; def displace2 = 0; def AvgExp2 = ExpAverage(price[-displace2], EMA_2length); def condition7 = (price >= AvgExp2) and (AvgExp2[2] <= AvgExp2); #DMI Oscillator input DMI_length = 5; input averageType = AverageType.WILDERS; def diPlus = DMI(DMI_length, averageType)."DI+"; def diMinus = DMI(DMI_length, averageType)."DI-"; def Osc = diPlus - diMinus; def Hist = Osc; def ZeroLine = 0; def condition8 = Osc >= ZeroLine; #Trend_Periods input TP_fastLength = 3; input TP_slowLength = 4; def Periods = sign(ExpAverage(close, TP_fastLength) - ExpAverage(close, TP_slowLength)); def condition9 = Periods > 0; #Polarized Fractal Efficiency input PFE_length = 5; input smoothingLength = 2.5; def PFE_diff = close - close[PFE_length - 1]; def val = 100 * Sqrt(Sqr(PFE_diff) + Sqr(PFE_length)) / sum(Sqrt(1 + Sqr(close - close[1])), PFE_length - 1); def PFE = ExpAverage(if PFE_diff > 0 then val else -val, smoothingLength); def UpperLevel = 50; def LowerLevel = -50; def condition10 = PFE > ZERoLine; #Bollinger Bands PercentB input BBPB_averageType = AverageType.Simple; input BBPB_length = 20; def Num_Dev_Dn = -2.0; def Num_Dev_up = 2.0; def upperBand = BollingerBands(price, displace, BBPB_length, Num_Dev_Dn, Num_Dev_up, BBPB_averageType).UpperBand; def lowerBand = BollingerBands(price, displace, BBPB_length, Num_Dev_Dn, Num_Dev_up, BBPB_averageType).LowerBand; def PercentB = (price - lowerBand) / (upperBand - lowerBand) * 100; def HalfLine = 50; def UnitLine = 100; def condition11 = PercentB > 50; #STARC Bands def ATR_length = 15; def SMA_lengthS = 6; def multiplier_factor = 1.25; def valS = Average(price, SMA_lengthS); def average_true_range = Average(TrueRange(high, close, low), length = ATR_length); def Upper_BandS = valS[-displace] + multiplier_factor * average_true_range[-displace]; def Middle_BandS = valS[-displace]; def Lower_BandS = valS[-displace] - multiplier_factor * average_true_range[-displace]; def condition12 = (Upper_BandS[1] <= Upper_BandS) and (Lower_BandS[1] <= Lower_BandS); #Projection Oscillator def ProjectionOsc_length = 30;#Typically 10 def MaxBound = HighestWeighted(high, ProjectionOsc_length, LinearRegressionSlope(price = high, length = ProjectionOsc_length)); def MinBound = LowestWeighted(low, ProjectionOsc_length, LinearRegressionSlope(price = low, length = ProjectionOsc_length)); def ProjectionOsc_diff = MaxBound - MinBound; def PROSC = if ProjectionOsc_diff != 0 then 100 * (close - MinBound) / ProjectionOsc_diff else 0; def PROSC_OB = 80; def PROSC_OS = 20; def condition13 = (PROSC > 50); #Trend Confirmation #Confirmation_Factor range 1-13. input Confirmation_Factor = 7; #Use for testing conditions individually. #def Agreement_Level = condition1; plot Agreement_Level = condition1 + condition2 + condition3 + condition4 + condition5 + condition6 + condition7 + condition8 + condition9 + condition10 + condition11 + condition12 + condition13; def Up = Agreement_Level >= Confirmation_Factor; def Down = Agreement_Level < Confirmation_Factor; AssignBackgroundColor(if Up then color.DARK_GREEN else if Down then color.LIGHT_RED else color.black);
This is a note from Christopher on PAGE 1 of this thread (scroll down 3/4 of the page), under TS v9 strategy (a foundation of Scalper_v3's, I believe):Can anyone suggest where to I should set my Multi at on Upper Scalper v3 when trading mes. mym and mnq. It seems good at 50 with the es but when used on mes everything is on top of each other. I switched to a 5 multi. It seems better but not sure if it is right. Please advise. Thank you
Actually, this is perfect and simple changes. I just thought a chart share would be easier for you. I got it set up. Thanks for your help!Hi @METAL , I only made some changes as follows:
1. PLD_Bands (in the settings): see attachments. Note: I let PLD_Bands does the colorbars painting (instead of C3_MAX_v2 => see next).
2. C3_MAX_v2 (in the code):
line 16: "coloredCandleOn"= no
line 960: comment out "AssignPriceColor..." with a # in front
*Note: After these changes, I clicked on "Save as new script" (bottom right) and named it "C3_MAX_v2_NoColorBars" (to respect the orignal code remain untouched).
3. Turn off the signal arrows within C3_MAX_v2 settings so that PLD_Bands has the exclusive right to signaling (to avoid confusions).
I don't think it's necessary to share the chart because all of Christopher's strategies and studies are all on page 1 of this thread. As you can see, I only know how to use the most basic steps to make these changes. I'm an amateur and absoltely NOT a coder at all. If I can use the "search" function withhin this forum + google in order to play with these and make changes (most importantly to fit how I interpret and understand of the indicators/strategies/studies), I'm sure anyone can do better than me. Cheers!
Actually, after losing nearly $400,000 to the market, having been grinding 16 hours/day and 7 days/week for 18+ months, I'm finally on the right track and having seen consistent daily profit (yet I don't stop grinding hard and never stop finding ways to learn and improve, never give up). Perhaps you understand why I don't like "easy" when it comes to anything related to trading. I've never asked anyone to share their chart.Actually, this is perfect and simple changes. I just thought a chart share would be easier for you. I got it set up. Thanks for your help!
Hi @TapthatAsk,@Christopher84 What exactly is the confirmation level on the watchlist telling me? I thought it was the number of confirmed candles but that didn't line up with the chart so I'm a little confused. I see the 0-13 on the chart cant wrap my head around what it means, thought it was ob/os afer looking at it but then my super column shows os but the confirm column shows 0.0 lol etremely lost
Start a new thread and receive assistance from our community.
useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.
We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.
If you are new, or just looking for guidance, here are some helpful links to get you started.