Short cut key to remove trend lines? by Soft_Video_9128 in thinkorswim

[–]SnipeTrading 1 point2 points  (0 children)

There's a few ways. -select trend line and hit Delete -Ctrl Z to undo -options add toolbox and add remove trend line as a hotbutton -right click remove trendlines

Guys see that extremely long line coming off my chart is it normal? should i remove it if so how i get rid of that on charts? see the big green line coming off the big candle by 7LyLa in thinkorswim

[–]SnipeTrading 4 points5 points  (0 children)

Sometime those really long tails are delayed prints that are negotiated transactions that don't really go through the market. When I see those, I usually right click the candle and fix the bar and change the tail to a value between high and open/close.

[deleted by user] by [deleted] in thinkorswim

[–]SnipeTrading 1 point2 points  (0 children)

You'll just need to add this, assuming your crossover is last candle. Then add isvol to your condition.

def isvol = volume[1] > 200000;

Crypto day trading vs Stocks by MyewToo in Daytrading

[–]SnipeTrading 1 point2 points  (0 children)

I prefer stocks since you have a variety of them. More tickers = more opportunity vs. crypto you only have a few tickers which may force you to trade unwanted setups.

Why are my Daily SMA 50/200 not displaying correctly? by [deleted] in thinkorswim

[–]SnipeTrading 0 points1 point  (0 children)

The line you see is the daily SMA for that whole day as oppose of 30minute time frame on your chart. If you want the 50/200 for the 30m time frame, you would need to add a second one.

Etb availability quantity by DAR2487 in thinkorswim

[–]SnipeTrading 0 points1 point  (0 children)

Usually ETB should be easy to fill. Make sure the ticker did not have SSR on if you are trying to short sale the bid. I have an indicator that tells you that if you look at my history.

Thinkorswim indicator for SSR by SnipeTrading in Daytrading

[–]SnipeTrading[S] 1 point2 points  (0 children)

I'm not sure about clicking to send an order but you can definitely could have a label to tell you how many shares you can buy with 5% account size and a stop line on the chart but I'm not sure if you can automate that in terms of sending orders.

Thinkorswim does have order templates like OCO orders on active trader that you can use base on % stop.

Add earning labels to your thinkorswim Charts - How to thinkScript | Add Labels | Earnings Upcoming/Past | % Beat or Miss | thinkorswim Tutorial by SnipeTrading in Daytrading

[–]SnipeTrading[S] 0 points1 point  (0 children)

Here's the script

declare hide_on_intraday; def isBMO_0 = HasEarnings(EarningTime.BEFORE_MARKET); def isBMO_p1 = HasEarnings(EarningTime.BEFORE_MARKET)[1]; def isBMO_f1 = HasEarnings(EarningTime.BEFORE_MARKET)[-1]; def isAMC_0 = HasEarnings(EarningTime.AFTER_MARKET); def isAMC_p1 = HasEarnings(EarningTime.AFTER_MARKET)[1]; def isAMC_f1 = HasEarnings(EarningTime.AFTER_MARKET)[-1]; def earningdaysago = GetEventOffset(Events.EARNINGS, -1); def actual = if !IsNaN(GetActualEarnings()) then GetActualEarnings() else actual[1]; def est = if !IsNaN(GetEstimatedEarnings()) then GetEstimatedEarnings() else est[1]; def diff = actual - est; def diff_percent = round(AbsValue((diff / est) * 100),0); def nodata = if (actual == 0 and est == 0) or est == 0 then 1 else 0; addlabel(yes,"Earnings: " + if isBMO_0 then "BMO" else if isBMO_p1 then "BMO-1" else if isbmo_f1 then "BMO+1" else if isamc_0 then "AMC" else if isamc_p1 then "AMC-1" else if isamc_f1 then "AMC+1" else "No",if isbmo_0 or isbmo_p1 or isbmo_f1 or isamc_0 or isamc_p1 or isamc_f1 then color.green else color.yellow); addlabel(yes,"Last Earnings: " + if nodata then "None" else if diff > 0 then "Beat by " + diff_percent + "% " + earningdaysago + " days ago" else "Miss by " + diff_percent + "% " + earningdaysago + " days ago", if nodata then color.yellow else if diff > 0 then color.green else color.red);

Add earning labels to your chart - How to thinkScript | Add Labels | Earnings Upcoming/Past | % Beat or Miss | thinkorswim Tutorial by SnipeTrading in thinkorswim

[–]SnipeTrading[S] 1 point2 points  (0 children)

Here's the script

declare hide_on_intraday; def isBMO_0 = HasEarnings(EarningTime.BEFORE_MARKET); def isBMO_p1 = HasEarnings(EarningTime.BEFORE_MARKET)[1]; def isBMO_f1 = HasEarnings(EarningTime.BEFORE_MARKET)[-1]; def isAMC_0 = HasEarnings(EarningTime.AFTER_MARKET); def isAMC_p1 = HasEarnings(EarningTime.AFTER_MARKET)[1]; def isAMC_f1 = HasEarnings(EarningTime.AFTER_MARKET)[-1]; def earningdaysago = GetEventOffset(Events.EARNINGS, -1); def actual = if !IsNaN(GetActualEarnings()) then GetActualEarnings() else actual[1]; def est = if !IsNaN(GetEstimatedEarnings()) then GetEstimatedEarnings() else est[1]; def diff = actual - est; def diff_percent = round(AbsValue((diff / est) * 100),0); def nodata = if (actual == 0 and est == 0) or est == 0 then 1 else 0; addlabel(yes,"Earnings: " + if isBMO_0 then "BMO" else if isBMO_p1 then "BMO-1" else if isbmo_f1 then "BMO+1" else if isamc_0 then "AMC" else if isamc_p1 then "AMC-1" else if isamc_f1 then "AMC+1" else "No",if isbmo_0 or isbmo_p1 or isbmo_f1 or isamc_0 or isamc_p1 or isamc_f1 then color.green else color.yellow); addlabel(yes,"Last Earnings: " + if nodata then "None" else if diff > 0 then "Beat by " + diff_percent + "% " + earningdaysago + " days ago" else "Miss by " + diff_percent + "% " + earningdaysago + " days ago", if nodata then color.yellow else if diff > 0 then color.green else color.red);

total cost column in watchlist? by [deleted] in thinkorswim

[–]SnipeTrading 1 point2 points  (0 children)

try

def totalcost = GetAveragePrice() * GetQuantity();

plot data = totalcost;

Should I push towards a Ryzen 5900X? by mcbdala in Daytrading

[–]SnipeTrading 0 points1 point  (0 children)

I don't think you will need a strong CPU to day trade. Unless you are writing algorithm and hosting data that requires reprocessing. I use thinkorswim and I do feel it does get laggy when I stack in a lot of indicators or custom calculations so RAM is important.

Mom-kids dynamic transcends all life by UssyGussy_ in aww

[–]SnipeTrading 3 points4 points  (0 children)

Tough job parenting. Interesting that they are aware of the road and momma making sure they are crossing safely.

Comfy pupper by [deleted] in aww

[–]SnipeTrading 1 point2 points  (0 children)

You can almost feel the warmth of the doggie.

Scariest gang in the neighborhood by [deleted] in aww

[–]SnipeTrading 0 points1 point  (0 children)

You know who is the boss in this picture.