DAS Trader Pro – button types explained

If you’re trying to speed up your trading, mastering how you cycle through tickers is a game-changer. Fumbling with your keyboard or clicking around too much can be frustrating.

Here are 6 different ways to get the right symbol onto your charts, ranging from basic mouse clicks to advanced hotkeys.

1. Grab it from the history

If you know you’ve looked at a ticker recently, don’t bother typing it out again. Just pull open your recent history list. If you touched it today, it’s probably sitting right there waiting for you.

2. Use the data config window

The old-school, direct approach. Just click the little icon in the top-left corner of your chart, type the ticker you want, and hit enter. Simple.

3. Drag and drop

If you like using your mouse, this is super intuitive. If you keep a clean watchlist on your screen, you can literally just grab a symbol from the list and drop it right onto the chart you want to change.

4. Just type in the name

Most of the traders do not know about this one. Simply select the chart window, type the symbol name, and hit enter.

5. Hotkey with a prompt (on the chart window)

For the hotkey fans, you can actually set up dedicated hotkeys or buttons right at each individual chart. Click the button, type the symbol when prompted, and that specific chart updates.

This is the code for the hotkey/hot button

$whichsymbol=input("Symbol?",SPY,1);
getwindowobj(NAME).symb=$whichsymbol;
getwindowobj(NAME).getcustbutobj(Button0).text=$whichsymbol;

It changes the chart symbol and the button symbol as well.

Notice how the button text changes based on the chart symbol even if it is changed by the other methods.

6. Send the montage symbol to a specific chart number

This is my personal favorite, and the setup I rely on every single day.

I run six dedicated watchlist charts on my screen, named WATCHCHART1 through WATCHCHART6. Instead of clicking around, I use a dedicated hotkey that triggers a quick prompt. I just type the number of the chart I want to update, and it instantly pulls the active symbol from my montage and throws it onto that chart.

If you would like to try it out, here is the exact script I use to handle it

$whichchart=input("Which Chart?",1,1);
getwindowobj("WATCHCHART"+$whichchart).symb=$montage.SYMBOL;

Similarly, you can retrieve the selected symbol from the watchlist rather than from the montage.

$whichchart=input("Which Chart?",1,1);
getwindowobj("WATCHCHART"+$whichchart).symb=getwindowobj("MYMKTVIEWER").selectedsymbol;

Where MYMKTVIEWER is the name of the watchlist window.