FOUNDING ACCESS IS FULL·Founder onboarding is closed.Get launch updates →
← All guides
//ThinkorSwim setup

How to install
ThinkorSwim indicators.

You found a thinkScript indicator you want to run, and now you need it on your own charts. It is easier than it looks. This guide walks you through the manual import method that works every single time, then shows you how to put the study to work in charts, watchlists, and scans.

What a thinkScript indicator actually is

thinkorswim, by Charles Schwab, is desktop trading software. The indicators you add to it are written in its own scripting language, thinkScript. When someone hands you an indicator, what they are really handing you is a block of thinkScript code, plain text that tells the platform what to calculate and draw. Installing it means pasting that code into thinkorswim and saving it as a named study.

That is the whole idea. There is no separate app to download and no file to drag into a folder. If you have the code, you can install the indicator. WeTradePro ships its free ThinkorSwim indicators as ready-to-paste thinkScript, so the code is right there for you to copy, no signup for the free set.

Two ways to install

There are two common methods, and it is worth knowing both so you are never stuck.

Method A, manual thinkScript import. You copy the code and paste it into a new study by hand. This is the reliable, universal method: it works no matter where the indicator came from, and it is the one every trader should know. The steps below cover it in full.

Method B, a shared link. Some indicators are distributed as a shared grid link that opens directly in thinkorswim. You click the link, choose to import when the platform asks, and the study is added automatically. It is convenient when it is offered, but you do not always get one. Manual paste always works even when all you have is the raw code, so treat Method A as your default.

The manual import, step by step

  1. 1. Open the thinkorswim desktop platform and go to the Charts tab.
  2. 2. Click the Studies icon (the beaker) at the top of the chart, then choose Edit Studies.
  3. 3. In the Edit Studies window, click Create at the bottom left, then New Study. This opens a blank code editor.
  4. 4. Delete the placeholder code that is already in the editor, then paste the entire WeTradePro thinkScript code in its place.
  5. 5. Give the study a name you will recognize, then click OK or Apply.
  6. 6. The study now shows up in your Studies list. Add it to any chart, and it is installed for good.

Menu wording moves around a little between platform versions, so if a button is not exactly where it is described, look for the closest match. The sequence is always the same: open a chart, open Edit Studies, create a new study, paste the code, name it, save.

A worked walk-through

Say you grabbed one of the free indicators from WeTradePro and copied the code to your clipboard. You open thinkorswim, click into Charts, and hit the beaker at the top of the chart. Edit Studies opens. You click Create in the bottom left, then New Study, and a small editor appears with a few lines of sample code in it. You select all of that sample code and delete it, then paste your copied thinkScript so the editor holds only the WeTradePro code. You type a name like “WTP Momentum” in the name field, click OK, and click Apply. The study drops onto your chart. From now on it lives in your Studies list, ready to add to any symbol with two clicks.

Putting the study to work

Installing the indicator is step one. The reason thinkScript is powerful is what you can do with it afterward. You can apply the study to a chart to read a symbol at a glance. You can add it as a watchlist column so it reports across every ticker on your list at once. And you can drop it into the Scan tab to hunt for the exact setup it flags across the whole market, instead of clicking through charts one by one. A single well-built study can be a chart tool, a watchlist filter, and a market-wide scanner, all from the same block of code.

Free, no signup

Grab the thinkScript code to install

The free WeTradePro ThinkorSwim indicators come as ready-to-paste thinkScript. Copy the code, follow the steps above, and it is on your charts in minutes.

Browse the free indicators →
//Common mistakes

Four ways an install goes sideways.

Pasting only part of the code

The most common failure. A thinkScript study is one complete block, and a truncated paste throws a syntax error the moment you apply it. Select the entire code from the very first line to the very last, copy all of it, and paste all of it. If the editor turns red, the first thing to check is whether the top or bottom of the script got cut off.

Working in the wrong tab or window

Studies live under the Charts tab, inside Edit Studies. If you are staring at the Trade tab or the Monitor tab looking for a place to paste code, you are in the wrong room. Open a chart first, then the Studies beaker, then Edit Studies, then Create.

Not saving the study before you close

Pasting the code is not the same as saving it. You have to name the study and click OK or Apply, or the whole thing disappears when you close the window. Give it a name you will actually recognize later, not the default, so you can find it in your Studies list next time.

Expecting a scan-only study to draw on a chart

Some scripts are built to return true or false for a scan, not to plot lines on a chart, and vice versa. If you add a study and nothing appears on the chart, it may be doing its job somewhere else. Check whether the indicator is meant for the chart, a watchlist column, or the Scan tab before you assume it is broken.

Indicators are just the start.

The free thinkScript gives you the reads. WeTradePro pulls them together into one command center that watches your setups, sizes your risk, and keeps your process honest across every trade.

Educational analysis, not financial advice