Hello, can you please explain what strategy are you using to trade ES?
Here you go, from the man himself. @Christopher84
https://usethinkscript.com/threads/confirmation-candles-indicator-for-thinkorswim.6316/post-114463
Hello, can you please explain what strategy are you using to trade ES?
Join useThinkScript to post your question to a community of 21,000+ developers and traders.
Thank you you are very helpfulEdit
Page 1 the first screenshot explains C3_Max
Go back to page 95 or so if you want but I have some fairly recent screenshots and explanations some of which on this page (107) or type my screen name in the search bar and my comments will appear for this thread.
Newest version (from my screenshots) for the normal chart tab: http://tos.mx/YvWYK12
Newest version (from my screenshots) of the active trade chart tab: https://tos.mx/pwAANlN
I am testing your setting somehow when I place the order the order status doesn't show up on the chart ? all my old setting shows except your setting?Screenshot Edit
the whole setup: http://tos.mx/3OxJpPS
regular chart tab: http://tos.mx/YvWYK12
active trader: http://tos.mx/GUpRaTt
Ok try this one.
should look like this on the regular chart
The Gex lower indicator did not finish loading before the screenshot was taken (computer is a new Thinkpad P1 just incase your wondering… but loads much quicker on the 6-9month)
I generally set the active trader chart to Daily 6 or 9 months if I am using the Gex lower study as it loads faster however the IV crush labels may not work unless you set it to 1 year or more.
and the active trader chart (the "Gex" lower study takes up some computing power so you may want to leave it off unless you want to see it.) I only look at this one the day before.
Thank you so much, I know you have shared your set up and how you trade it. Can you point me to some reading material? I want to learn how/what you use to become profitable trader. I have been struggling from last 1 year. I feel like this will help me a lot.Here you go, from the man himself. @Christopher84
https://usethinkscript.com/threads/confirmation-candles-indicator-for-thinkorswim.6316/post-114463
Hi @Terminator,Does Chrisotpher have video explaining his charts. I trying to read everything and have somewhat of a concept to everything. As a visual person it would really help. Used the chart today and did well.
Thanks I did not see that video. I will lok againHi @Terminator,
There is a video on pg.1 of the thread discussing an earlier version of C3. I have also put discriptions above most of the codes on pg.1 to help breakdown the various components for everyone. This coming year I will be putting together some new videos discussing some of the intricacies of C3_Max as well as several of the strategies that I have put together and how to apply them. I am hoping it will be helpful.
Hmmm not sure I assume it will be in settings though.I am testing your setting somehow when I place the order the order status doesn't show up on the chart ? all my old setting shows except your setting?
@Christopher84 . I have been trying to learn your ES scalping strategy. Can you please explain me, how do you take entries on T9? I see Blue arrow going up/down, and then there are green, orange and red line.
I am confused between the arrows and how and when to enter long/short
Do we take entry when 5 min bar closes above/below (Green/Red) line?
I also have great results on /ES and /NQ on a 1 minute chart using TS_Analysis_v9. I changed the ATR to 1.2 and ATRPeriod to 50. I also added the ADX filter to the AddOrder so I don't open trades in a chop. However I can only either do buy or sell at a time if I do both it messes it up completely. Both Buy and sell yield very good results. Is there a way to add both at the same time without the BUY_AUTO and SELL_AUTO??@Christopher84 I am looking at the strategies and the P/L graph, I see that if the trade is opened during the RTH and if it gaps up or down it can have huge profits or losses. Is there a way to change it and close the trade before close and start over the following day? Thanks so much!!
PLD Rejection was canceled right at open with strong price action to the upside.I will be watching for price to reject at the PLD line on the 3/15min charts… hourly not looking great but waiting for confirmation
3 min TSLA
15 min TSLA
1 hr TSLA
Hi @Christopher84 I tried to get the 2 C3_Max_V2 strategies with default settings and tried on /ES 5 and 10 minutes chart. Floating P/L shows big losses on both LE_SE and LE_LX. Are there any settings that need to be modified?I also have great results on /ES and /NQ on a 1 minute chart using TS_Analysis_v9. I changed the ATR to 1.2 and ATRPeriod to 50. I also added the ADX filter to the AddOrder so I don't open trades in a chop. However I can only either do buy or sell at a time if I do both it messes it up completely. Both Buy and sell yield very good results. Is there a way to add both at the same time without the BUY_AUTO and SELL_AUTO??
input length = 14;
input ADXAvgType = AverageType.WILDERS;
def ADX = DMI(length, ADXAvgType).ADX;
def TrailingStop = trail;
def LongEnter = (price > TrailingStop );
def LongExit = (price < TrailingStop );
AddOrder(OrderType.BUY_TO_OPEN, condition = LongEnter and ADX >22 , price = open[-1], 1, tickcolor = GetColor(1), arrowcolor = Color.LIME);
AddOrder(OrderType.SELL_TO_CLOSE, condition = LongExit or close < EntryPrice() - 2.5, price = open[-1], 1, tickcolor = GetColor(2), arrowcolor = Color.LIME);
### Triple Exhaustion partial code
def sellerRegular = SlowK_3x < 20 and MACD_stdev_3x < -1 and dPlus_3x < 15;
### I believe the line below is telling me if sellerregular is true on the previous bar and not on the current bar then plot RegularBuy ###
plot RegularBuy = if sellerRegular[1] and !sellerRegular then low else Double.NaN;
### My screen show will show a dot and an arrow for triple exhaustion - the dot is "regular" and the arrow is "Extreme" i have tried to eliminate the need for two indications plotting at the same time then they are both true but cannot seem to make it work?... I suppose i will need to reference the bar number somehow, but my brain is melting.
RegularBuy.SetPaintingStrategy((PaintingStrategy.ARROW_UP));
### Spark Code
plot SparkUP = (Spark == 3) and (CandleColor == 1);
SparkUP.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
SparkUP.AssignValueColor(Color.LIGHT_GREEN);
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.