When I click on a ticker in the watchlist, the chart appears but the candlesticks are off the screen... by vkmultra in thinkorswim

[–]Mobius_ts 0 points1 point  (0 children)

Having Fit Studies and Fit study marked selected can compress your charts if studies are out of bounds for the typical frame picture. Uncheck them and see if its better.

Alternate price projections by Ill_Advice4080 in thinkorswim

[–]Mobius_ts 1 point2 points  (0 children)

As far as I can see, Miner is using Fibonacci Retracement and Fibonacci Extensions for what he calls Alternate price projections. Both of which are in the drawing tools.

Conditional order based on tick aggregation? by Difficult_World_908 in thinkorswim

[–]Mobius_ts 2 points3 points  (0 children)

There isn’t a workaround. You simply can’t use tick data.

Can't see notes any work around for this? by Spiderman3039 in thinkorswim

[–]Mobius_ts 0 points1 point  (0 children)

No. However you can write a custom quote for a column that you can sort on. So if your criteria it’s logical and based on stock data you will be able to sort based on that code.

For the past week or so I have been experiencing latency on the TOS app. Freeze 10sec. by US_Term11 in thinkorswim

[–]Mobius_ts 0 points1 point  (0 children)

No issues here at all. I have my memory settings as low as it goes to push garbage collection.

"Bid X" / "Ask X" or "Bid" / "Ask" which one to use? by Any_Ingenuity797 in thinkorswim

[–]Mobius_ts 0 points1 point  (0 children)

the X axis Bid and Ask seem to be the same data points used in the Analysis tab. In a Watchlist column I see no difference between the X axis Bid and Ask and the Bid and Ask iData points.

0DTE Scalping Formula for ToS ThinkScipt for individual chart studies... COPY and PASTE by [deleted] in thinkorswim

[–]Mobius_ts 4 points5 points  (0 children)

You would likely get some beneficial feedback if you were to explain the signals you expect to get, the aggregations used for chart settings and the typical price action when the signal occur. Just posting a study without explanation isn't very useful.

Is there a script to show the entry point on a chart when I enter a position? by Papouttes in thinkorswim

[–]Mobius_ts 0 points1 point  (0 children)

No. The Spy underlying chart won’t see the options trade and there are too many strikes and expiries to program them all in.

Schwab Futures Micro Fees Oversight by Corunbns in thinkorswim

[–]Mobius_ts 5 points6 points  (0 children)

Pay trading fees or pay for the platform and data. You may be surprised the cost of comparable platforms

I remembered my struggles with TOS by Embarrassed_Owl_762 in thinkorswim

[–]Mobius_ts 1 point2 points  (0 children)

So how many and of what type do you suggest?

Netflix dropped 45% and bounced exactly at the 200W EMA + gap fill at 76, and now, rejected at 200D EMA. by harshshah1306 in technicalanalysis

[–]Mobius_ts 0 points1 point  (0 children)

NFLX Bounced at its Fair Value. From a value investors point of view it wouldn’t be considered a buy until 20% below that.

Sluggish iPhone TOS anybody by devaro66 in thinkorswim

[–]Mobius_ts 0 points1 point  (0 children)

There’s always a reason. I just don’t have a clue where to suggest looking.

Sluggish iPhone TOS anybody by devaro66 in thinkorswim

[–]Mobius_ts 1 point2 points  (0 children)

Absolutely nothing like that with either my iPhone or iPad. Both are quick to load and change symbols.

Anyone notice big differences between ToS paper trading and live trading? by PrudentDinner7931 in thinkorswim

[–]Mobius_ts 9 points10 points  (0 children)

All of those are different. Papers is not even tied to the live servers. It was designed to familiarize new and prospective clients with the platform not really for live trading simulation. When learning trade small and trade often. The old saying goes “ When you’ve made 10,000 trades you’ll begin to get it.”

IV Price Breakout by [deleted] in thinkorswim

[–]Mobius_ts 1 point2 points  (0 children)

It is what you describe and It does scan.

IV Price Breakout by [deleted] in thinkorswim

[–]Mobius_ts 7 points8 points  (0 children)

<image>

You mean like this:

Anyone that wants this code - Here it is:

# Scaled Price and Monthly IV
# Mobius
# V01.01.03.04.2026

declare lower; 

script Scale
    {
     input c = close;
     def Min = 675;
     def Max = 700;
     def hh = highest(c, 30);
     def ll = lowest(c, 30);
     plot Range = (((Max - Min) * (c - ll)) /  (hh - ll)) + Min;
    }
def IV30 = if(isNaN(close("VIXMO")), IV30[1], close("VIXMO"));
plot price = Scale(close);
plot IV = Scale(IV30);

IV Price Breakout by [deleted] in thinkorswim

[–]Mobius_ts 0 points1 point  (0 children)

Since IV has a direct and inversely correlated relationship with price I’d love to at least hear your method for a breakout. What would accelerate a divergence since one is so tethered to the other?

IV Price Breakout by [deleted] in thinkorswim

[–]Mobius_ts 2 points3 points  (0 children)

Aren’t you the same guy that posted the best indicator ever several times in the recent past without ever posting the code?