DAS Trader Pro – LEVEL UP YOUR DAS SCRIPTS
Topics covered:
- Assigning a Montage Window to a variable
- Accessing Montage properties through objects
- Setting Price, Route, TIF, and Share values
- Triggering Buy and Sell actions through the object
- Building more reliable and advanced DAS scripts
The script(s) featured in this episode are provided below for educational and reference purposes. Trading stocks, options, futures, and other financial instruments involves substantial risk of loss and is not suitable for all investors. You may lose some or all of your invested capital. Always review and thoroughly test any code in a simulator before using it in a live trading environment.
This video is provided by YouTube. It is blocked until you accept functional cookies.
Important!
Some of these scripts may also rely on scripts created in previous episodes. Any
updates to scripts will be shown below, but any scripts left unchanged would need to
be sourced from the episode they were featured in. It is recommended to watch all
videos in this series in order, that way you can piece together a working system
with a good understanding of all the connected parts.
SIMPLE_BUY_ASK
This script is from a previous episode. Changes have been marked in the file so you can follow what was adjusted in this episode.
//SIMPLE BUY ASK + 0.10
Price=Ask+0.1;Share=1;TIF=DAY+;BUY=Send
SIMPLE_FOCUS
This script is from a previous episode. Changes have been marked in the file so you can follow what was adjusted in this episode.
//SIMPLE FOCUS
FocusWindow montage; OR FocusWindow "montage";
Price=Ask+0.1;
Share=1;
TIF=DAY+;
BUY=Send;
//OBJECT_VERSION
This script is from a previous episode. Changes have been marked in the file so you can follow what was adjusted in this episode.
//OBJECT_VERSION
$montage_window = GetWindowObj("montage_window");
$montage_window.Price=Ask+0.1;
$montage_window.Share=1;
$montage_window.TIF=DAY+;
//ORDERS_CANCEL_BUY
This script is from a previous episode. Changes have been marked in the file so you can follow what was adjusted in this episode.
//ORDERS_CANCEL_BUY
FocusWindow montage;
$montage_window.CXL ALLSYMB BUY;
Disclaimer:
This is an independent project and is not affiliated with or endorsed by DASTrader.com.
The tool is currently under development and intended for educational and experimental purposes only,
including improving the experience of working with DAS hotkey scripting (e.g., code validation,
highlighting, and structure).
It does not execute trades, provide trading signals, or offer financial advice. Any scripts created or used
with DAS Trader remain the sole responsibility of the user.
Trading involves significant risk. You are fully responsible for verifying all scripts, commands, and
behavior before using them in a live trading environment.
This tool is provided “as-is” with no guarantees of accuracy, completeness, or reliability. Use at your own
risk. Always test thoroughly in a simulator before live trading.