Activity
Mon
Wed
Fri
Sun
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
What is this?
Less
More

Memberships

InvestCEO with Kyle Henris

33.9k members • Free

19 contributions to InvestCEO with Kyle Henris
Any Other Think or Swim Users?
Is anyone else using think or swim (charles schwab) for your trading? (Either paper trading or live)
0 likes • 14d
I am and I had ChatGPT design some codes that you might find helpful. Just search my posts.
0 likes • 14d
@Erin Royer I use Williams Fractals. They are under Patterns, not studies. The engulfing pattern is in there too.
newbie charting question/review
I'm very new. Have watched all the videos, but this is my 1st day trying to chart myself. this is a daily chart, did I put the demand block in the right spot?
newbie charting question/review
1 like • 14d
Almost, you want to extend it down to the lowest wick, which looks like the green candle. You're capturing the origin of the move, so you want to capture all that price action that made the move happen.
0 likes • 14d
Yes, that's the tip of the price action, but the bottom of the price action is lower. You should probably watch that video again and it will become clear.
Using engulfing, market structure shift, breaker box, FVG & inverted FVG entry models on the 1hour timeframe
Is anybody using these entry models to place orders on the 1H timeframe (Jedi)? Or are they more suited to lower timeframes (Superman)?
TOS Script for Fair Value Gap Indicator
I had ChatGPT write a ThinkorSwim script for a study that shows an arrow on the 3rd candle of a Fair Value Gap. I have it set for a minimum of 0.5 points but you can customize that. I find it useful so I thought I'd share. Here you go! (I also have the engulfing candle pattern turned on in TOS though none are showing in this screenshot.) # ==== FVG Arrow — Confirmation Bar (Directional) ==== # Bullish FVG = arrow UP below the bar # Bearish FVG = arrow DOWN above the bar input minGapPoints = 0.50; # ES/MES = 2 ticks input offsetTks = 10; # spacing in ticks def t = TickSize(); def bn = BarNumber(); # FVG conditions (current vs bar[2]) def bullGap = low > high[2] and (low - high[2]) >= minGapPoints; def bearGap = high < low[2] and (low[2] - high) >= minGapPoints; def fvgNow = bn > 2 and (bullGap or bearGap); # --- Bullish arrow (up, under candle) --- plot BullArrow = if bullGap then low - offsetTks * t else Double.NaN; BullArrow.SetPaintingStrategy(PaintingStrategy.ARROW_UP); BullArrow.SetDefaultColor(Color.ORANGE); BullArrow.SetLineWeight(1); # --- Bearish arrow (down, above candle) --- plot BearArrow = if bearGap then high + offsetTks * t else Double.NaN; BearArrow.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN); BearArrow.SetDefaultColor(Color.ORANGE); BearArrow.SetLineWeight(1);
1
0
TOS Script for Fair Value Gap Indicator
TOS script for London & Asian sessions
I had ChatpGPT write a script for me so I can quickly see the London and Asian sessions in ThinkorSwim. It works as is with whatever timezone you have TOS set to. It's helpful to me, so I just thought I'd share. Here you go! (I also included a screenshot of the study I use to auto-draw the daily high/low. # Session Highlighter (ET): Asian & London (very faint colors) # - Asian: 6:00pm ET → 3:00am ET # - London: 3:00am ET → 12:00pm ET input showAsian = yes; input showLondon = yes; # Ultra-light pastel fills DefineGlobalColor("AsianFill", CreateColor(245,235,255)); # ultra-light lavender DefineGlobalColor("LondonFill", CreateColor(230,245,255)); # ultra-light blue def intraday = GetAggregationPeriod() < AggregationPeriod.DAY; # Asian session: 18:00 → 03:00 (spans midnight) def inAsian = intraday and (SecondsFromTime(1800) >= 0 or SecondsTillTime(0300) > 0); # London session: 03:00 → 12:00 (no midnight span) def inLondon = intraday and (SecondsFromTime(0300) >= 0 and SecondsTillTime(1200) > 0); plot aTop = if showAsian and inAsian then Double.POSITIVE_INFINITY else Double.NaN; plot aBot = if showAsian and inAsian then Double.NEGATIVE_INFINITY else Double.NaN; plot lTop = if showLondon and inLondon then Double.POSITIVE_INFINITY else Double.NaN; plot lBot = if showLondon and inLondon then Double.NEGATIVE_INFINITY else Double.NaN; aTop.SetDefaultColor(GlobalColor("AsianFill")); aBot.SetDefaultColor(GlobalColor("AsianFill")); lTop.SetDefaultColor(GlobalColor("LondonFill")); lBot.SetDefaultColor(GlobalColor("LondonFill")); aTop.SetPaintingStrategy(PaintingStrategy.HORIZONTAL); aBot.SetPaintingStrategy(PaintingStrategy.HORIZONTAL); lTop.SetPaintingStrategy(PaintingStrategy.HORIZONTAL); lBot.SetPaintingStrategy(PaintingStrategy.HORIZONTAL); AddCloud(aTop, aBot, GlobalColor("AsianFill"), GlobalColor("AsianFill")); AddCloud(lTop, lBot, GlobalColor("LondonFill"), GlobalColor("LondonFill"));
1
0
TOS script for London & Asian sessions
1-10 of 19
Esther Tester
3
29points to level up
@esther-tester-5729
Musician

Active 13d ago
Joined Jul 9, 2025
Powered by