We have moved to Discord. Please click here to join us in the Trading Terminal Discord server.
These forums are read-only.
Search the Community
Showing results for tags 'das trader pro'.
Found 53 results
-
Updated: 8/8/2019 @ 12:44pm (PST) Finally out of the alpha stage and releasing this to the community, I've been using it with success. Because I had to do some musical chairs with memory I made a configuration utility as the script itself is very ugly. This is more of a BETA release for this, so if anyone wants to try this out in SIM and let me know if you have any issues with the configuration sheet or the hotkeys themselves. It's based on the work started by @fjmocke here: https://forums.bearbulltraders.com/topic/469-das-calculate-shares-based-on-account-risk/ . What it is: It's a hotkey command script that can be used to dynamically alter the share total based on: Available Buying Power (capital) Stop Location (Risk) % Account Risk OR Fixed Dollar Amount The script includes purchase power protection and won't send an order that you can not afford, it does this by calculating two factors: A - Shares You Can Afford B - Shares at Risk Parameter (e.g. $25,000 account equity, 1% risk = $250 risk, $250 * a stop distance of .10 = 2500 shares) min{A,B} = 0.5(A + B - | A - B | ) But, why male models? I just told you. /Zoolander reference You'd use this to calculate your share total based on what you're willing to risk. So instead of blindly throwing 500 shares at every setup, you can dynamically alter risked amount based on the per-trade setup. I use it on my StreamDeck (will also release the icon packs soon) with modifiers of 100%, 75%, 50%, and 25%. 100% is the A-Plus setups I see, those I have HIGH confidence in. Alternatively, if a stock has a large spread or is low-float, I may only use the 25% modifier key for those. Instructions for Configuration: Go to this link: V2.1: DOWNLOAD ^^ Recommend latest DAS version of 5.4.3.0. Requires DAS version 5.2.0.34 or above (current BETA branch as of 11/19/2018) for the physical stop portion to work. If you don't use the physical stop, you don't have to worry about it. NOTE: Thoroughly test in SIM to make sure it's doing what you expect it to do. Choose: Download the ZIP file and unzip to where you want. On "Setup & Instructions" configure your settings. Account Leverage (default for DAS is 4), this is the margin your broker gives you. Some off-shores give 6. It needs to match what is configured in DAS for proper calculations. Max Account Risk %. This is the maximum percent of equity you're willing to risk on every trade (default is 1%). You can always risk lower (more on that later). % of Total Buying Power. If you don't want to calculate based on the total buying power of 100%, you can set this to a lower percentage (example: 100,000 buying power with 60% here equals $60,000 maximum position size) Route. LIMIT, MARKET, SMRTL. Default is LIMIT. Order Bid/Ask Offset. This is the offset you use when you send the price for order, e.g. "Ask + 0.05" (meaning fill me up to 5 cents above ask) Time in Force. Default: Day+ Default Shares. This is the amount of shares you want to set as the DEFAULT SHARES for all trades (e.g. when you click a Symbol and it loads, this is the share total). You can see why this is here in the technical breakdown section below. Minimum Stop Buffer. This is an offset to the stop distance. If you set this to 0.05, it'll add 5 cents to the stop distance calculation (so if your stop distance is 0.05, it'll be calculated on 0.10). Switch to the "Hotkeys" tab. Choose your preferred style. % Risk of Equity (Dynamic) or Fixed Price (e.g. $150 risk). %Equity Risk: Use the drop down to select what you want the value to be % equity. NOTE: This is a modifier AFTER your account risk maximum %. So if you have 1% account risk, and set this to 50%, your effective account risk is 0.005 --> 0.5%. $ Fixed: Use the drop down to select what you want the value to be for dollar risk. Select "long" or "short" to flip the script's direction. Click the cell that contains the start of the command (E column) and Ctrl + C (copy). Paste it into DAS. It should look like a sample command below. Instructions for Usage: First, you must have "Double Click to Trade" turned on in Chart, Right-Click --> Configure --> Settings --> Double-click to trade. Double click the chart where you want to set a mental stop (it does not place a stop order, you can always put one in after). Hit your configured hotkey. Sample Scripts: LONG: DefShare=BP*0.98; Share=DefShare*0.25* Price * 0.01; Price = Ask - Price + 0.02;SShare = Share / Price; Share = DefShare - SShare; DefShare = DefShare + SShare; SShare = Share; SShare = DefShare - SShare; Share = 0.5 * SShare; TogSShare; ROUTE =LIMIT; Price = Ask + 0.05; TIF=DAY+; BUY=Send; DefShare = 500; SHORT: DefShare=BP*0.98; Share=DefShare*0.25* Price * 0.01; Price = Price - Bid + 0.02;SShare = Share / Price; Share = DefShare - SShare; DefShare = DefShare + SShare; SShare = Share; SShare = DefShare - SShare; Share = 0.5 * SShare; TogSShare; ROUTE =LIMIT; Price = Bid - 0.05; TIF=DAY+; SELL=Send; DefShare = 500; Technical Breakdown: DAS has basic scripting. Montage commands have access to very few read/write variables, basic operations, and only operators of addition, subtraction, division, and multiplication. To do this calculation we need additional operators (min function, and absolute function) and more memory for storage of variables. This command gets around these limitations by using user-writeable areas of memory in the program. Since DAS is written in the C++ language (from what I can tell), it's strict on what can be done in these existing memory locations. The hotkey uses the following items (plus the usual Price -- FLOAT): (Assumptions on Datatypes) DefShare -- INT (Used as a temporary variable for storage) SShare -- Unsigned INT (Behaves like an Unsigned INT in certain situations. Used as a temporary variable for storage) Share -- INT (Used as a temporary variable for storage) With the 3 INT variables, objects are moved around in memory so that we can calculate and compare with our variable limitation (be much easier if we could assign our own). To facilitate the ABS() function, we use a trick --> When a negative value is placed into an Unsigned INT it loses it's sign (thus, it becomes a POSITIVE value in memory). A more detailed technical breakdown (step by step) is located in the Configuration spreadsheet up above. Future Enhancements: If need be, I can make a step-by-step video of this entire process. I have a version that uses an AutoHotKey macro to drop a line at the stop location, I can upload that as well if people want it. ^^ Update, I discontinued this as it was too cumbersome. You had to have two sets of hotkeys for each command. I may someday revisit it if I can build out a configuration tool for it. TLDR: It does the math for you so you can risk a known amount (% or $) based on your per-trade risk position (stop distance). And yes, I'm a bit of a tech nerd. Also, longest post .. ever. Would not read again, 0/5 stars. --- KNOWN ISSUES: %Account Risk gets smaller and smaller when subsequent open positions Reason: No Equity variable, we reverse calculate equity using Buying Power. On subsequent positions, the % (e.g. 1%) calculation will be based on the available buying power and NOT the account equity. Workaround: Precalculate the %risk and use it for the $risk versions. So 1% of $25,000 equity equals $250. SSR rejection on LONG position when scaling out; rejection message (e.g. "Short marketable limit order disable due to SSR!") if using the automatic STOP trigger. Reason: DAS calculates that the position will drop below the open stop order position and reject as this can cause the position to "flip" if it was triggered. Workaround: Have a hotkey to clear the open orders (CXL ALLSYMB), clear it, scale the position (e.g. 25%). Either replace the stop or switch to a mental stop. Alternatively, you can add "CXL ALLSYMB;" to the front of the scale-out hotkeys. You just have to be cognizant to replace the stop order. Equated position size if very small (e.g. 4 or 5 shares when expected is hundreds). Reason: Wrong side was used for the order. E.g. a long hotkey is used when trying to go short. -or- Stop Distance was calculated to be a negative value (clicked too close to current price). Workaround: Be cognizant of the hotkeys used and the stop distance clicked. Clicking too close (a really tight stop) can be very dangerous if you do it inadvertently. TriggerOrder for automatic STOP placement not being sent (no stop order placed). Reason: Montage is not set to a style that doesn't allow TriggerOrder input. Styles not compatible are: Default [DAS's, if you changed it], Basic, OCO, Option, Full Fix: Use a style that is compatible, they are: Stop Order, Detail, Trigger -- I recommended using the "Stop Order" montage style. To change this, right click the montage area around where you'd enter a price and select Style --> Your Choice. --- UPDATES: 10/17/2018 - Added v.1.1 link, you'd need to use the new version to change anything. - General cleanup of the script. Added instructions for the IB issue (discussed in this thread) - NEW FEATURE: Added a new section to the Hotkeys sheet, it will now create a set up for Dynamic Scale-In hotkey commands. You'd use these by setting a scale value (say you want an additional 50% of your current position size). The hotkey will calculate the maximum share you can afford (how much you can afford at the moment) and the scale value, choosing to take the least amount. So if your current position is 1500 shares (@ $50.00) and you want to scale in at 50% your current position, it'd check if you can afford an additional 750 shares, if you can't, it'll buy the maximum you can afford. For this example, you can't afford it (if Buying Power is 100k), so it'd buy roughly $25k worth (500 shares). - CLEANUP: Cleaned up the $Dollar Risk version and removed unnecessary steps. Don't really need to replace yours if they exist, but worth noting. 10/30/2018 - Added @Michael P's suggested fixes for Excel. Configuration tool should now work in both Sheets and Excel. - NOTICE: This was a configuration tool change, no changes were made to the hotkey scripts, so no need to change any existing hotkeys. 11/19/2018 - Shortened some of the commands so we don't hit any hotkey character limit, makes them less readable, but shorter. Couldn't get them low enough to fit the montage buttons though (although removing the portions for the buying power rejection protection would likely do it). - Added a section for SELL/COVER buttons for people who just need to create those. E.g. "Sell 25% position" or "Sell 33% position". - Added @Robert H's stop suggestion. New fields on the setup page for enabling physical stops. If enabled, it'll place a MARKET or LIMIT (settings included) trigger order to go into the market once the initial order is fulfilled, these are placed at the location you double-clicked on the chart. 11/20/2018 - Added a stop-order setting to set an additional buffer for the stop price (for those that want to include or exclude the double-clicked price). - Added conditional formatting to subdue the stop settings that aren't required if you disable sending a physical stop into the market. 12/10/2018 - Added a known issues section to this post and the spreadsheet (for when a new version goes up). 12/12/2018 - Updated known issues section to include the "Montage Style" issue for TriggerOrders. 12/13/2018 - Updated to new version 1.46. Fixed a bug in the Trigger Order script which could cause it to not be interpreted by DAS's command parser on certain user settings. - Added "modifier" extra hotkeys. See instructions next to these on how to use them. - - - Set Stop to Breakeven - Long or Short - Stop Limit or Stop Market (cancels any pending orders for SYMB) - - - Set Stop to Breakeven - Bidirectional - Stop Market (cancels any pending orders for SYMB) - - - Stop - Update Price - Long or Short - Stop Limit or Stop Market (cancels pending orders, double click chart where you want stop before firing hotkey) - - - Stop - Update Price - Bidirectional - Stop Market (cancels pending orders, double click chart where you want stop before firing hotkey) - - - Stop - Update Position - Long or Short - Stop Limit or Stop Market - Replace (requires you double-click the original stop in the Orders window) - - - Stop - Update Position - Bidirectional - Stop Market Orders Only - Replace (requires you double-click the original stop in the Orders window). 8/8/2019 - New version 2.0, download the .zip file and unzip it. - Fixed an issue with some hotkey configurations that may have caused them to be inaccurate in vary rare situations. Recommend recreating your hotkeys in this new version, just to be sure. - Added Profit Target hotkeys. - Added % Scale-In Hotkeys - Added $ Risk Scale-In Hotkeys - Added Short-SSR to Long/Short dropdown for SSR hotkeys (DAS Simulator) - Added Range Order hotkeys - Added Y-Margin Scale Increase hotkey, Y-Margin Decrease, and Y-Margin Reset - Added new sheet "Example - Equity%" and "Example - $Risk" to give a more workflow outlook on what is happening. - Included a ScaleOut worksheet to manually simulate what different scale percentages / scenarios look like (instructions will be in the video). ALSO: Video is done and rendering, I think it comes in at 45minutes with 3.4gigs (4k), so it'll need to be optimized before I upload it to YouTube. Will try to do it today and will update this when done. 9/10/2019 - New version 2.1 released. Just general clean up (UI) and bug fixes. - FIXED: Issue with the Scale-In $Risk hotkeys. - FIXED: Issue with the Stop Update Price long and short hotkeys> ^^ If you use either of those, please regenerate them and replace in your DAS to avoid issues. UPDATES: The majority of this side project is completed and besides a few requests I have in with DAS developers to optimize a few things, out of any major bugs or improved scripting features, I'd say this is about done. I'll provide any edge-case support as need, but I want to move on to other BBT-community projects. So what do I have cookin' for you guys, gals, and cat? You'll see a glimpse in the video of an early prototype (buggy! I programmed that in a few hours, so bugs are expected) of a DAS calculator side program. The newer version (need to finish the UI) will incorporate a lot more in ways of tools for you, including automatically calculating changes without a hotkey intervention. It also allows you to mass-process trade log .csv files you may have exported and compile it into Excel or .CSV for import into other programs. Configuration is drag/drop friendly, so rearranging your columns is as easy as click and holding. I'm also going to shift my attention to finishing my ORB-strategy research. Right now, my datapool encompasses 15000 news article, gaplists for 2011-2019, and 1second data for stocks in that range. It's a data store of roughly 80 gigs. The idea is to test for hidden signals we may not see that can indicate a potential direction of an ORB strategy (if no rare outside influence occurs, like a terrorist attack) by leveraging a consortium of machine learning algorithms to give us a higher probability of success for each day. Depending how the research works out, the end product would likely be a probability predictor for each day. I'll share the research results with the community and may incorporate some other tests as well. VIDEO: Ok, so I may have gone down an editing rabbit hole and that took longer than expected. The videos are up, came in quite long so I chunked it down. Sorry it's a tad scattered and not one-linear cohesive unit, but I tried to mark it up as best as possible. Part 1 - Config / Math - https://youtu.be/YrRrydwGyRY Part 2 - Setup, Quick Examples, Tips - https://youtu.be/pXLlWF7T6hw Part 3 - Sim Trade Example - https://youtu.be/SO9UhJh4dTc Bonus 1 - Scale/Price Excel Calc - https://youtu.be/KTr_iJ2p0TU Bonus Tips - https://youtu.be/sNHXFMoia7A- 589 replies
-
- 60
-
-
-
- scripts
- risk management
-
(and 3 more)
Tagged with:
-
Confussion between Das Simulator and Das Trader Pro
Jeremias Lopez posted a topic in Bear Bull Traders - Members Only!
Hi everyone, I am new in the community (and in the world of Trading to be fair). I have spent the past two months reading books, watching trading videos here and in youtube, and I feel like I can start with my simulation period, but I am little confused about the DAS platform. The DAS simulator offered here seems to have a few limitations: Can not be linked to any broker Can not be customized, no market data can be added or removed, it is offered as is. Does this mean that once I decide to go live, I have to start over with a new DAS setup? This one does not take any customizations apparently. If I start with the regular DAS pro, in SIM mode, will that one allow me to customize as I learn, and then keep any customization once I decide to go live ? Do I need to create a IB account before and link it to the DAS app? I am really unsure about the next steps into my SIM learning time! I hope my questions make sense! Thanks~~- 2 replies
-
- simulator
- das trader pro
-
(and 1 more)
Tagged with:
-
Few users asked about this in chat, posting here so everyone can see how I do my ATR chart. 1) Create a new "Daily" chart 2) Download the linked .zip file and unpack it. --> https://drive.google.com/file/d/12JJGdg_SOeQVM-avM7_N-pNbDRQfN2wz/view?usp=sharing 3) Right-click the chart you created in DAS and select "Import Settings" --> Select the "ATR-chart-setup.cst" file you unpacked in #2. 4) You may need to select the chart and zoom all the way in for the effect to work. 5) Move the chart and place it where you want it. As a side tip, you can right-click the border and choose to hide the title-bar (making it smaller). I do it like this to fix a few issues .. DAS's ATR study doesn't allow you to hide the line on a chart and a chart must have either a volume or price study. If the chart is small, it'll make all of these lines behind the study info, making it hard to read .. if you make the line color white, it'll make the study color white. So I use the Volume Study with the same color as the background placed above the ATR studies to "hide" the lines. You then just need to zoom all the way in (should stay), and you'll end up with just the Study Info in the upper corner. Screenshot:
- 11 replies
-
- 4
-
-
- das trader pro
- atr
-
(and 2 more)
Tagged with:
-
Script - DAS Separate Live / Simulator Versions - v1.1 - Updated: 2020/08/07
KyleK29 posted a topic in DAS Trader Pro Tips and Tricks
Some users asked about this in chat a while back and as I was writing up the documentation on how to do a dual-copy of DAS Trader Pro -- one version for Sim and another for Live -- I realized that it had some complexity which may have made it difficult for some end-users. So to remedy this, I wrote a script to do it for you. I did this with batch / powershell commands (it's been awhile, so not eloquent at all) so that users can see what is going on (no tomfoolery with your accounts). What Does It Do: It's a Windows 10 (if Mac users exist, your mileage may vary) script that will: Makes a mostly symbolic copy of your DAS Trader Pro install (it'll copy over the Config.cfg file, since we need to change a few things) --> If your DAS install is C:\DAS Trader Pro\ it'll create a C:\DAS Trader Pro_Sim\ folder. By default, only the theme folder and .exe exist in the new folder install (the SIM version will check for a version change on the .exe and copy it over as needed for when updates occur), the rest is symbolically linked via the file-system to the main install. This is done so that items carry over their settings (Trendlines, Desktop Layout, Hotkeys, etc.). This is beneficial because if you use the default config then all layout, chart, trendlines, hotkeys, and other options stored outside of the Config.cfg file will be the same in both versions. You can change this behavior with options (more on that in setup below). Right now, options exist for: Desktop Layout (default.dsk), and the Hotkey File (hotkey.htk). Change the background of the simulator install (for better visual recognition). [optional] Add A Sound Alert for the Simulator version when a LIVE account trade is made in it [auditory recognition]. [optional] Add a Sound Alert for the Live version when a Simulator account trade is made in it. Example Image Notes / Prerequisites: If you set your account via as part of hotkey scripts (e.g. "ACCOUNT=U#######") you will want to change those values in your hotkey.htk file and also toggle the config.ini setting for separate_hotkey_file to "separate_hotkey_file=1" (instructions below). I assume most users won't need to this do. How Do I Use It?: Glad you asked. Download the zip file linked below and then follow the instructions here. As a precaution, I recommend you make a backup copy of your DAS install. Easiest way is to go to the folder that contains your DAS install, right-click it, and select "Send to Compressed Zip" .. if your install is in C:\, you'd right-click the "DAS Trader Pro" folder there. Unzip the downloaded file to a directory. If you use the DAS default install location of "C:\DAS Trader Pro\" - and / or - wish to have the defaults, skip to step 3. If you don't use that location, continue reading this part. Go into extracted directory and edit "config.ini": Config Available: ⓐ directory=C:\DAS Trader Pro This is the location of your DAS install. By default, it's C:\DAS Trader Pro as that is the DAS default. ⓑ separate_desktop_file=0 This is if you want to have separate Desktop.dsk files for SIM and LIVE. By default, it's the same layout. To use separate desktop files, set this as: separate_desktop_files=1 ⓒ separate_hotkey_file=0 This is if you want to have a separate Hotkey.htk file for SIM and LIVE. By default, it's the same file. To use separate hotkey files, set this as: separate_hotkey_file=1 ⓓ add_sound_alerts_sim=0 This is if you want to have a sound alert added to your DAS SIM, for this to work properly there will be additional setup (see section "Sound Alerts - SIM Account"). What it does is add an audible alert if you trade with your LIVE ACCOUNT in the SIM ACCOUNT. To use, set to: add_sound_alerts_sim=1 ⓔ add_sound_alerts_live=0 This is if you want to have a sound alert added to your DAS LIVE, for this to work properly there will be additional setup (see section "Sound Alerts - LIVE Account"). What it does is add an audible alert if you trade with your SIM ACCOUNT in the LIVE ACCOUNT. To use, set to: add_sound_alerts_live=1 Right Click "Setup.bat" --> Run-As Administrator a) On Windows Admin Prompt Click "Yes" b) On the command window that opens, make sure it does not give an error. If prompted, type the letter "Y" and hit enter. c) If no error messages, hit enter again to close the command window. Launch DAS using the shortcut created on the desktop as "DasTrader - SIM Account" --> Under ... Blue w/ S is the SIM account. Yellow w/ L is the Live account. You're not done ... go to Additional Setups section. Additional Setup: There's some brief changes we need to make within DAS for this to work properly. Open the "LIVE" version of DAS (the yellow icon). Login and on the top menu bar select "Setup" -> "Order Templates" On the "Account" box, select your LIVE account (for IB users it's likely something like U#######). Hit "Apply This Setting To All Exchanges." [optional] If you enabled the SIM trade in Live Account alert in config.ini, read the next line, otherwise skip to #5. For the Alert to work, go into Top Menu Bar -> Tools -> Alert & Trigger -> Double Click "WARN-LIVEACCOUNT" -> Double Click the "Value" box next to the "Acc" item (it should say "U1111111") -> Set this to your LIVE account. Image helper here. Close DAS. Open the "SIM" version of DAS (the blue icon). Login and on the top menu bar select "Setup" -> "Order Templates" On the "Account" box, select your SIM account (for IB users it's likely something like TRIBT####). Hit "Apply This Setting To All Exchanges." For the Alert to work, go into Top Menu Bar -> Tools -> Alert & Trigger -> Double Click "WARN-SIMACCOUNT" -> Double Click the "Value" box next to the "Acc" item (it should say "U1111111") -> Set this to your SIM account. Image helper here. Close DAS. Download: v1.00 - 1/14/2020 - outdated .. v1.01 - 8/7/2020 - DAS_DASSim_Separation_Script_V1.1.zip Changelog: v1.00 - 1/14/2020 - Release of initial script. v1.01 - 8/7/2020 - Quick rework of the script to be in its own .EXE, this may help with any issues for permissions. Known Issues: v1.00 - 1/14/2020 - My father never really played catch with me as a child, but besides that, there doesn't seem to be any that I'm aware of with the script at the moment. /joke- 9 replies
-
- 5
-
-
-
- simulator mode
- helpers
-
(and 2 more)
Tagged with:
-
Since this subforum is by far the most active, we've stickied this FAQ which contains links to individual posts. This post will be updated regularly. [Last updated: May 17, 2021] DAS Trader Downloads DAS Trader Pro Production Releases for Interactive Brokers DAS Trader Pro Production Releases for CMEG BBT DAS Simulator Production Release (ONLY IF YOU GOT DAS SIM THOUGH BBT) When doing an install of a new version, it is always a good idea to back up your settings! DAS Trader Pro references, education and support OFFICIAL: DAS INC DAS TRADER PRO - DEMO Tutorial - How to Correctly Use DAS Trader Pro User Guide and Manuals DAS Trader Official YouTube Channel DAS Weekly Free Q&A Webinar DAS Trader Pro Knowledge Base DAS Trader Pro Risk Control explained in Knowledge Base. Common DAS Trader errors No More Order Server to Connect’ error message ‘Wrong Trader’ error message “Lost Connection to Quote Server” error message General Where can I subscribe for DAS Trader Pro live account for Interactive Brokers? How to Change Your Equity and Buying Power in Simulator How to Switch Between Live and Demo Accounts Update/Upgrade DAS To Latest Version Understanding the DAS Account Report DAS Deluxe Package - Switching Options L2 for ARCA Book DAS Trader on MAC OS also see DAS Trader FAQ > 5. SYSTEM REQUIREMENTS How to link symbol selection in Trade Ideas to DAS How to set a price alert in DAS How to add Audio Alerts in DAS How to Configure DAS Mobile for Android or iPhone Definition of Time and Sales Flags How to use the DAS Risk Control Page List of Index tickers (SPY, DJIA, NASDAQ, RUSSELL, etc.) How to Make a Pre-Market Scanner in DAS DAS Trader Videos Playlists in YouTube DAS Trader Tutorials (basic DAS Trader configuration) DAS Trader Pro Instructional Videos (Advanced DAS Trader Features) Market Replay Mode How to use new DAS Trader Market replay feature Montage, Windows, and Layouts How to Make Your Custom Layout Load as Default on Startup How to link Montage to Time&Sales and Charts? How To Setup Multiple Monitors in DAS How to Duplicate a Montage, Chart or Other Window Montage / Level 2 color and shade settings How to Quickly Add Rows to Watchlist (Market Viewer) How to Change Order Button Colours (BUY, SELL, SHRT, CXL, RPL) Select Active Montage to Trade Definition for each of the Level 1 (L1) fields at top of Montage How to select the montage before placing a trade How to use the New L2 Highlight Feature in DAS Trader (YouTube video) Charts [VIDEO] How to configure charts in DAS Trader Pro: Education Center How to Add Index Tickers for SPY, DOW, NASDAQ DAS Trader Tutorial – Make Your Chart Look Like Andrew's How to Add Average Line to Volume Study How to Drag and Drop Horizontal Lines How to Transfer Price Levels to Another Chart Drawing Support and Resistance Lines in DAS How to add previous day close (PCL), high of day (HOD) & low of day (LOD) How to Prevent Chart from Zooming out When Switching Symbols How to Add/Remove Trade Icons on the Chart Show trade info on chart (triangle click) How to Increase Y-Axis Scale to See More Price Levels / This can now be done with the newer versions (5.4.0.0+) of DAS using hotkeys Change Default Number of Candles How to add Relative Strength Index (RSI) to Chart How to Draw a Diagonal or Sloping Line How to Change font size in Chart How to add separator line for Pre-Market (Open) and After-Hours (Close) How to correct short/small candlesticks by excluding Studies from Y-Axis Scale (Y LOW, YY HIGH, etc). How to Zoom in on Specific Area of Chart Why is VWAP sometimes different between 1-minute chart, 5-minute chart, and/or Montage? How to add vertical lines on 1-minute chart to show each 5-minute period How to add Average True Range (ATR) to DAS Daily Chart How to add and use Volume by Price study How to add bid & ask to your charts How to add RVOL in DAS? Exceeded max number of global trend lines Order Entry Placing Orders in DAS Trader Pro Trailing Stops How to Lock Your Montage How to set a Bracket aka Range aka OCO order (includes hotkeys) Hotkeys and Hotkey Buttons - Always test your Hotkeys in simulator Most frequently used hotkeys Terminology Clarification: Hotkeys vs Hotkey Buttons Programming hot key for stop loss Buy/Sell Hotkeys for Automatic Stop Loss How to Create HotKey Buttons on the DAS Montage Level 2 Window Hotkeys for Flipping Position Hotkey for buying based on a percentage of Buying Power How to Adjust Montage Hotkeys Button Size What does the Panic hot key do? How to set up hotkeys for trailing stops Hotkeys for adjusting share size How to create hotkey which launches Finviz page for a selected stock Hotkey for automatic share size based on max dollar loss Hotkey for automatic share size based on % loss of account How to short stocks in SSR: see here and here Thor´s Freeroll Hotkey DAS Trader Pro Support Live Chat Support Das Trader contact page to send messages DAs Trader Support Email DAS Hotkey Line Style Configuration tool.
-
Limit Up / Limit Down (LU / LD) on L2 / Montage
Abiel posted a topic in DAS Trader Pro Tips and Tricks
Any idea why it did not halt? About LULDs -
Hotkey for horizontal line at 2R, 3R, etc.
mahamuni posted a topic in DAS Trader Pro Tips and Tricks
Hi, In Das, can a hot key be setup so that it puts a horizontal line at 2R, 3R etc? If not does anyone know how to script for it? Thanks Munish -
DAS Change timeframe of chart group with hotkey?
JC posted a topic in DAS Trader Pro Tips and Tricks
I have a screen with 6 charts (3 linked to their own montages and 3 fixed using the Data Config). I typically watch from the open on lower timeframes but would like to flick between 1 minute, 2 minute, 5 minute and 15 minute quickly as the day progresses. Is it possible to switch the timeframe on a group of charts with a hotkey in DAS? -
Technology Class June 13th, 2022 Topic of the Week New DAS Version 5.7.0.5 Overview Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. CANCEL All Open Orders for Symbol Below or Equal to the AvgCost: LONG: CXL BELOWEQAVGCOST; -- CANCEL All Open Orders for Symbol Above or Equal to the AvgCost: SHORT: CXL ABOVEEQAVGCOST; -- 15 Minute Chart Command: MinuteChart 15 30d; NumBar 20;-
- das trader pro
- open tech qa
-
(and 1 more)
Tagged with:
-
May 16th, 2022 - Technology Class - Technology / DAS Trader Pro Open Q/A
KyleK29 posted a topic in Technology Webinars
Technology Class May 16th, 2022 Topic of the Week Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. @ Line Config Tool for Custom Line Colors https://www.kaelmedia.com/projects/das-line-config/ @ Video for Dynamic Risk Hotkeys https://bearbulltraders.com/course/webinars-mentorship/lesson/technology-2/topic/advanced-hotkeys-for-risk-management-part-1-kyle-2/ @Alerts on Chart [Prior Class Information]: https://forums.bearbulltraders.com/topic/3065-august-16th-2021-technology-class-technology-das-trader-pro-open-qa/?tab=comments#comment-22350 Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums-
- das trader pro
- tech class
-
(and 1 more)
Tagged with:
-
Technology Class May 2nd, 2022 Topic of the Week New DAS Beta Version 5.7.0.3 Overview Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. Example of ConfigTrendline Hotkey for Rectangle w/Background + Transparency Settings: ConfigTrendLine Rectangle DotLine:FF0000:FF00FF:125; ---- Create Alert from Chart [Example is GreaterThan or Equal]: ** For a more complete example of how to use these and enable them, you can find it in a prior webinar class. ** Here: AlertName=TestGTE; AlertType=LastPrice; AlertOperator=>=; PlaySound=Yes; AutoDelete=Yes; Beep=Yes; Speak=Yes; PopupWindow=No; SoundFile "C:\myfile.wav"; AddAlert; ---- Set Partial 25% Bidirectional, Any Broker: Route=Limit; Route=SMRTL; Share=Pos*.25; TIF=DAY; Send=Reverse; Set Partial 50% Bidirectional, Any Broker: Route=Limit; Route=SMRTL; Share=Pos*.50; TIF=DAY; Send=Reverse; Set Partial 100% Bidirectional, Any Broker: Route=Limit; Route=SMRTL; Share=Pos; TIF=DAY; Send=Reverse; ----- @Mortforshort: CXL ALLSYMB; Route=Limit; Route=SMRTL; Share=Pos*.50; TIF=DAY; SELL=Send; TRIGGERORDER=RT:STOP STOPTYPE:MARKET STOPPRICE:STOPPRICE QTY:POS TIF:DAY ACT:SELL; Sell 25%, LONG, Set Stop to B/Even: CXL STOP; ROUTE=LIMIT; Price=BID-0.03;Price=Round2;Share=Pos*.25;TIF=DAY;SELL=Send; TRIGGERORDER=RT:STOP STOPTYPE:MARKET STOPPRICE:AvgCost QTY:POS TIF:DAY ACT:SELL; ----- Shell "myprogram.exe" %SYMB%; Shell "myprogram.exe" AMD; ----- @Tunde ROUTE=STOP; STOPTYPE=MARKET; STOPPRICE=PRICE; SHARE=POS; TIF=DAY; SEND=REVERSE; ----- Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums -
April 18th, 2022 - Technology Class - Technology / DAS Trader Pro Open Q/A
KyleK29 posted a topic in Technology Webinars
Technology Class April 18th, 2022 Topic of the Week Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. @Rey David: HideStudies "StudyPivotPoint"; @Norma: CXL ALLSYMB;ROUTE=LIMIT;Share=Pos;TIF=DAY+;SEND=Reverse; Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums -
Multiple Range Orders Hotkey Without Trigger Order
jokajon00 posted a topic in DAS Trader Pro Tips and Tricks
So I have seen a lot of hotkey setups on here which are very cool. I plan on using one that you can set your risk and it sets 3 range orders, but it requires entering the trade via hotkey and then triggers the range orders. I was wondering how to create a hotkey that creates 4 range orders with the stop of all set as the area i click on the chart and gets loaded into price. I've tried 2 different ways but every time only one order gets sent.. I'll post both ways and if someone could help that would be great. Thanks PS. These are to cover short. Attempt 1: ROUTE=STOP;StopType=Range;LowPrice=AvgCost-0.25 ;HighPrice=price ;Share=Pos*0.25 ;TIF=DAY+;BUY=Send; ROUTE=STOP;StopType=Range;LowPrice=AvgCost-0.45 ;HighPrice=price ;Share=Pos*0.25 ;TIF=DAY+;BUY=Send ROUTE=STOP;StopType=Range;LowPrice=AvgCost-0.65 ;HighPrice=price ;Share=Pos*0.25 ;TIF=DAY+;BUY=Send ROUTE=STOP;StopType=Range;LowPrice=AvgCost-0.75 ;HighPrice=price ;Share=Pos*0.25 ;TIF=DAY+;BUY=Send Attempt 2: ROUTE=STOP;StopType=Range;LowPrice=AvgCost-0.25 ;HighPrice=price ;Share=Pos*0.25 ;TIF=DAY+;BUY=Send; TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:AvgCost-0.45 HighPrice:Price ACT:BUY QTY:POS*0.25 TIF:DAY+; TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:AvgCost-0.65 HighPrice:Price ACT:BUY QTY:POS*0.25 TIF:DAY+; TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:AvgCost-0.75 HighPrice:Price ACT:BUY QTY:POS*0.25 TIF:DAY+;- 1 reply
-
- hot keys
- das trader pro
-
(and 3 more)
Tagged with:
-
April 4th, 2022 - Technology Class - Technology / DAS Trader Pro Open Q/A
KyleK29 posted a topic in Technology Webinars
Technology Class April 4th, 2022 Topic of the Week Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ ** Alerts on Chart Hotkey Chart Alerts: Add Alerts from Chart: * Must have the Alerts & Trigger window open/minimized. * If this is a hotbutton, you need to name a chart (Right-Click the title area -> Name: ...) as CHART1A for the hotbutton to work from the montage. If using as a hotkey script, you need to click the chart and fire the hotkey. FocusWindow CHART1A; AlertName=TestGTE; AlertType=LastPrice; AlertOperator=>=; PlaySound=Yes; AutoDelete=Yes; Beep=Yes; Speak=Yes; PopupWindow=No; AddAlert; FocusWindow CHART1A; AlertName=TestGTE; AlertType=LastPrice; AlertOperator=<=; PlaySound=Yes; AutoDelete=Yes; Beep=Yes; Speak=Yes; PopupWindow=No; AddAlert ---- @MasterChief --> Hotkey Fix: CXL ALLSYMB; Route=Stop; StopType=Market; Share=Pos; StopPrice=10 / Share; StopPrice=AvgCost-StopPrice; StopPrice=Round2; Share=Pos; TIF=Day+; Send=Reverse; ---- Place Limit Order @ Double-Clicked Price: All Brokers, Bidirectional: ROUTE=LIMIT; ROUTE=SMRTL; SHARE=POS*.20; TIF=DAY; SEND=REVERSE; Relevant Links: - Delayed Entry Dynamic Risk: https://forums.bearbulltraders.com/topic/2146-das-stop-limit-order-for-future-entry-with-dynamic-share-calculation-using-risk-with-a-stop-loss - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums-
- das trader pro
- tech class
-
(and 1 more)
Tagged with:
-
I just started using the DAS CMD API last week and am having some difficulties with it. The sample project that they sent doesn't even seem to work correctly. Specifically, I am trying to subscribe to the level 1 information for a given symbol and it never fires the callback handler. Right after I call socket.eventPool.Subscribe(...) I get a message in the output window stating "The event pool does not contain an entry for Lv1". After that, any calls to socket.SubscribeLevelOne(...) result in nothing happening. Personally, I think it's ridiculous that they want to charge for API access and can't even provide customers with a working sample. 😞
- 7 replies
-
- das trader pro
- das trader
-
(and 2 more)
Tagged with:
-
March 21st, 2022 - Technology Class - Technology / DAS Trader Pro Open Q/A
KyleK29 posted a topic in Technology Webinars
Technology Class March 21st, 2022 Topic of the Week Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ @Norma: LONG: ROUTE=LIMIT;Price=Bid-0.05;Share=Pos*.5;TIF=DAY+;SELL=Send; TRIGGERORDER=RT:STOP STOPTYPE:MARKET STOPPRICE:AVGCOST QTY:POS ACT:SELL TIF:DAY; SHORT: ROUTE=LIMIT;Price=Ask+0.05;Share=Pos*.5;TIF=DAY+;BUY=Send; TRIGGERORDER=RT:STOP STOPTYPE:MARKET STOPPRICE:AVGCOST QTY:POS ACT:BUY TIF:DAY; -- @Chip RemoveAllTrendlines; -- Chart Alerts: Greater Than or Equal: FocusWindow CHART1A; AlertName=TestGTE; AlertType=LastPrice; AlertOperator=>=; PlaySound=Yes; AutoDelete=Yes; Beep=Yes; AutoReset=Yes; Speak=Yes; PopupWindow=No; AddAlert; Less Than or Equal: FocusWindow CHART1A; AlertName=TestLTE; AlertType=LastPrice; AlertOperator=<=; PlaySound=Yes; AutoDelete=Yes; Beep=Yes; Speak=Yes; PopupWindow=No; AddAlert -- @Tunde: CXL ALLSYMB BUY; CXL ALLSYMB SELL; CXL ALLSYMB; Cancel all open orders, for the symbol in the montage. CXL STOP; Cancel the STOP orders, for the symbol in the montage. CXL ALL BUY; CXL ALL SELL; Cancel all orders for all symbols buy/sell. CXL ALL ACCOUNT OF TRMYACCOUNT; CXL ABOVEAVGCOST; Cancel all orders that are above my positional avg cost for the loaded symbol. CXL BELOWAVGCOST; Cancel all orders that are below my positional avg cost for the loaded symbol. -- Relevant Links: - Delayed Entry Dynamic Risk: https://forums.bearbulltraders.com/topic/2146-das-stop-limit-order-for-future-entry-with-dynamic-share-calculation-using-risk-with-a-stop-loss - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums -
Technology Class March 7th, 2022 Topic of the Week New DAS Beta Version 5.6.4.19 Overview Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ HIDE STUDIES: * = Wildcard HideStudies "Price,Volume,Moving*"; HideStudies "StudyMoving*"; HideStudies "StudyMoving*,StudyPriceMark*"; HideStudies "StudyMoving*,*PriceMark*"; ------ TRENDLINES: * = Wildcard HideTrendlineAll; HideTrendlineAll YES; HideTrendlineAll NO; HideTrendlines "TrendlineHoriz,TrendlineText"; HIDE TRENDLINES: HideTrendlineAll; #(toggles); HideTrendlineAll YES; #[will hide]; HideTrendlineAll NO; #[will unhide]; ------ Click to Set Profit Target Limit Order: ROUTE=LIMIT; Share=POS*0.20; TIF=DAY; SEND=REVERSE; ------ SET MONTAGE TO TRAILING: ROUTE=STOP; STOPTYPE=TRAILING; SHARE=POS; TIF=DAY; ------ LOAD MORE HISTORICAL DATA: GetMoreHistoricalData; ------ @RAVI: StopPrice=Price;Route=Stop;StopType=Market;Share=Pos;Send=Reverse; ROUTE=LIMIT; ------ DAS LINE CONFIG TOOL: https://www.kaelmedia.com/projects/das-line-config/ ConfigTrendLine horzline dotline:7736c5:2; HorizontalLine; How to "Fix" Think-or-Swim Bookmap Config: **Note, this resets your bookmap configuration to default and you will have to completely reconfigure it in Think or Swim afterwards. 1) Close Think-or-Swim if it is open. SIDE NOTE: If you have a lot of detached Bookmap windows in ToS, you may want to load it up, and close all of those leaving just the main Bookmap display, then close it. 2) Navigate to your ToS install directory, by default this is: C:\Program Files\thinkorswim\ 3) Go into the \book_map\settings folder. 4) Find the "bookmap_config_v7.json" (I imagine when they go to v8, it'll be _v8.json) and rename it to "bookmap_config_v7.json.bak" (or whatever you choose). 5) Relaunch Think-or-Swim and load the Bookmap Window --> Once it loads the default config, set up all your configuration as you see fit (remember to do *all* of it, all panels, columns, indicators, and miscellaneous settings you may want to change in Bookmap. Be thorough.). 6) Close down Think or Swim .. it will now save a new .json file to the settings folder. 7) Relaunch Think or Swim, and now any new symbol you load into Bookmap should use that initial setup you just did. Just remember that if you change a setting later down the road, it'll only show up as changed on the particular SYMB you changed it on, there doesn't appear to be a way to "Set As Default" or "Load Default" configs in the ToS version of Bookmap. Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums-
- das trader pro
- tech class
-
(and 1 more)
Tagged with:
-
February 14th, 2022 - Special Webinar: Advanced Hotkeys for Risk Management: Part 2
KyleK29 posted a topic in Technology Webinars
Special Webinar February 14th, 2022 Topic of the Week Technology / DAS Trader Pro : Advanced Hotkeys for Risk Management, Part 2 Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ For the Dynamic Risk hotkey scripts, please see the special "Relevant Links" section below. ------------ CALCULATOR SCRIPTS: FOR THE CALCULATE Scripts you must have an open position and a valid Stop Price populated in the montage's Stop Price ("Trigger Price") box. For best results, reload your current STOP Order by double-clicking it in the Orders window or double-clicking the QTY## portion on the order flag. These scripts will populate the dollar amount into the Montage's "Price" field. # Calculate Return at Double Clicked; Share=Price*100; Price=AvgCost; SShare=Price*100; Share=Share-SShare;Share=Share;Price=Share/100;Share=Pos;Price=Price*Share;TogSShare;Share=0; # Calculate Risk of Position; Price=AvgCost;Share=Price*100;Price=StopPrice;SShare=Price*100;Share=Share-SShare;Share=Share;Price=Share/100;Share=Pos;Price=Price*Share;TogSShare;Share=0; # Calculate Return PnL; Price=AvgCost;Share=Price*100;Price=Last;SShare=Price*100;Share=Share-SShare;Share=Share;Price=Share/100;Share=Pos;Price=Price*Share;TogSShare;Share=0; # Check Available Buying Power; Price=1; Share=BP; SShare=Share; Share=0; ------------ THOR'S FREEROLL: Thor's Freeroll, has very specific use cases. Please see Thor's videos / chatroom time to see how he utilizes it. IBKR Version - Short: CXL ABOVEAVGCOST;StopPrice = Price;Share=Price*100;Price=AvgCost;SShare=Price*100;Share=Share-SShare;Price=Share;Price=Share/100;Share=Pos * Price;Price=StopPrice-Bid;SShare=Share / Price;DefShare=BP*0.97;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;SShare=DefShare-SShare;Share=0.5*SShare; Share=Share*1; Price=Bid-0.05;TogSShare;TIF=DAY;ROUTE=SMRTL;SELL=SEND;DefShare=10; TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice ACT:BUY STOPPRICE:StopPrice QTY:Pos TIF:DAY; IBKR Version - Long: CXL BELOWAVGCOST;StopPrice = Price;Share=Price*100;Price=AvgCost;SShare=Price*100;Share=Share-SShare;Price=Share;Price=Share/100;Share=Pos * Price;Price=Ask-StopPrice;SShare=Share / Price;DefShare=BP*0.97;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;SShare=DefShare-SShare;Share=0.5*SShare; Share=Share*1; Price=Ask+0.05;TogSShare;TIF=DAY;ROUTE=SMRTL;BUY=SEND;DefShare=10; TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY; --- All Other Brokers and DEMO - Short: CXL ABOVEAVGCOST;StopPrice = Price;Share=Price*100;Price=AvgCost;SShare=Price*100;Share=Share-SShare;Price=Share;Price=Share/100;Share=Pos * Price;Price=StopPrice-Bid;SShare=Share / Price;DefShare=BP*0.97;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;SShare=DefShare-SShare;Share=0.5*SShare; Share=Share*1; Price=Bid-0.05;TogSShare;TIF=DAY;ROUTE=LIMIT;SELL=SEND;DefShare=10; TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice ACT:BUY STOPPRICE:StopPrice QTY:Pos TIF:DAY; All Other Brokers and DEMO - Long: CXL BELOWAVGCOST;StopPrice = Price;Share=Price*100;Price=AvgCost;SShare=Price*100;Share=Share-SShare;Price=Share;Price=Share/100;Share=Pos * Price;Price=Ask-StopPrice;SShare=Share / Price;DefShare=BP*0.97;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;SShare=DefShare-SShare;Share=0.5*SShare; Share=Share*1; Price=Ask+0.05;TogSShare;TIF=DAY;ROUTE=LIMIT;BUY=SEND;DefShare=10; TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY; ------------ BHOD/BLOD: As always, use in simulator. Not widely tested. Know what you're doing. This is for specific high-of-day and low-of-day break scenarios.] This should work with any broker. Usage: 1) Double-click where you want your STOP to be if the HOD entry is triggered. 2) Fire hotkey script. 3) It'll calculate your share total based on the HoD price (for the ticker) + 0.01 value and your dbl-clicked stop location using $40 risk as set. 4) It sets a pending STOP order to OPEN a position on the LONG side if the HoD + 0.01 value is hit. Sets a TriggerOrder in the system to create a STOP exit order upon triggering. a) If the above pending order is cancelled without fulfillment, the Trigger Order should be cancelled out as well. b) If the above pending order is triggered (price => hod+0.01), the Trigger Order will fire and open a STOP exit based on the risk calculations for $40. LONG SIDE - HIGH OF DAY BREAK: StopPrice=Price;DefShare=BP*0.97;Price=HI+0.01-Price;SShare=40/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare; Price=StopPrice; Route=STOP;StopType=Market;StopPrice=HI+0.01;TIF:DAY; Buy=Send; TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.3 ACT:SELL STOPPRICE:Price QTY:Pos TIF:DAY; DefShare=20; SHORT SIDE - LOW OF DAY BREAK: StopPrice=Price;DefShare=BP*0.97;Price=Price-LOW+0.01;SShare=40/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;Price=StopPrice;Route=STOP;StopType=Market;StopPrice=LOW-0.01;TIF:DAY; Sell=Send; TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice+0.3 ACT:BUY STOPPRICE:Price QTY:Pos TIF:DAY; DefShare=20; EXCEL on Thor's Freeroll logic breakdown, see "Relevant Links" section below. Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums - Spreadsheet for Logic Breakdown of Thor's Freeroll Hotkey Script: https://docs.google.com/spreadsheets/d/1SgeHa0qysaFuZU6VbHJxcDOjhkx1pF-u8lkNcCqjprs/copy-
- 1
-
-
- das trader pro
- hotkeys
-
(and 1 more)
Tagged with:
-
January 31st, 2022 - Special Webinar: Advanced Hotkeys for Risk Management: Part 1
KyleK29 posted a topic in Technology Webinars
Special Webinar January 31st, 2022 Topic of the Week Technology / DAS Trader Pro : Advanced Hotkeys for Risk Management, Part 1 Part 2 is scheduled for February 14th, 2022 at 5pm Pacific (8pm Market/Eastern). Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ For the Dynamic Risk hotkey scripts, please see the special "Relevant Links" section below. ------------ ** NOTE: We didn't get time to cover the use of these special Helper/Calculator scripts, we'll go over them in Part 2. But here they are if you want them. FOR THE CALCULATE Scripts you must have an open position and a valid Stop Price populated in the montage's Stop Price ("Trigger Price") box. For best results, reload your current STOP Order by double-clicking it in the Orders window or double-clicking the QTY## portion on the order flag. These scripts will populate the dollar amount into the Montage's "Price" field. # Calculate Return at Double Clicked; Share=Price*100; Price=AvgCost; SShare=Price*100; Share=Share-SShare;Share=Share;Price=Share/100;Share=Pos;Price=Price*Share;TogSShare;Share=0; # Calculate Risk of Position; Price=AvgCost;Share=Price*100;Price=StopPrice;SShare=Price*100;Share=Share-SShare;Share=Share;Price=Share/100;Share=Pos;Price=Price*Share;TogSShare;Share=0; # Calculate Return PnL; Price=AvgCost;Share=Price*100;Price=Last;SShare=Price*100;Share=Share-SShare;Share=Share;Price=Share/100;Share=Pos;Price=Price*Share;TogSShare;Share=0; # Check Available Buying Power; Price=1; Share=BP; SShare=Share; Share=0; Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums-
- das trader pro
- das
-
(and 2 more)
Tagged with:
-
Technology Class December 27th, 2021 Topic of the Week New DAS Beta Version 5.6.4.16 Overview Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums -
Technology Class December 20th, 2021 Topic of the Week Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums-
- das trader pro
- bookmap
-
(and 2 more)
Tagged with:
-
December 13th, 2021 - Technology Class - Technology / DAS Trader Pro Open Q/A
KyleK29 posted a topic in Technology Webinars
Technology Class December 13th, 2021 Topic of the Week Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ We discussed a few ways to "toggle off" studies - these aren't direct methods, so they have their downsides. METHOD 1 -> Save / Load Chart Settings: 1) Setup the chart exactly like you want, then right-click the chart -> Save Settings -> Save it to the DAS folder with a name you'll remember, example "TestStudysOn.cst" 2) Now remove the study you want to hide (toggle off), then right-click the chart -> Save Settings -> Save it to the DAS folder with a name you'll remember, example "TestStudysOff.cst" 3) Create a hotkey for "Toggle Study On" (you can name it whatever), with the script: LoadSetting TestStudysOn.cst; 4) Create another hotkey for "Toggle Study Off", with the script: LoadSetting TestStudysOff.cst; 5) Use those hotkeys with the specific chart selected to toggle the study on/off. Just remember, current zoom won't carry over, and if you alter settings of any studies (or the chart configuration) you'll need to remember to update it in both .cst files. ----- METHOD 2 -> Duplicate The Chart Window, then click to swap between the two (slightly overlap them): 1) Go into the hotkey editor and create a hotkey script for: DuplicateWindow; 2) Select the chart and hit that hotkey. It'll spawn an exact duplicate of the window you selected. Now just remove the study you don't want to be active. AS a side note, remember that if the Pivot Point study is "squishing" the chart view, you can toggle this off by going to the Study Config, selecting the study, hitting the "ConfigEx" button below the studies box, and then unchecking "Include in Scale." This is a commmon thing most users don't realize exists. Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums -
December 6th, 2021 - Technology Class - Technology / DAS Trader Pro Open Q/A
KyleK29 posted a topic in Technology Webinars
Technology Class December 6th, 2021 Topic of the Week Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums -
November 29th, 2021 - Technology Class - Technology / DAS Trader Pro Open Q/A
KyleK29 posted a topic in Technology Webinars
Technology Class November 29th, 2021 Topic of the Week Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums -
Technology Class November 22nd, 2021 Topic of the Week Utility Script Release: Auto Export DAS Trade Logs + Setup Tutorial Hotkey 3.0 Beta Testing Updates Technology / DAS Trader Pro : Open QA Class will review and answer submitted questions on the topic of DAS Trader Pro. Question of the Week None Shared Clipboard Any of the scripts or pasteable items we make during class will be pasted in the code box below for each copy/pasting by you. WEBINARS link: https://forums.bearbulltraders.com/forum/97-technology-webinars/ TECHNOLOGY PAGE: https://bearbulltraders.com/technology-class/ ------------ - Download Link for Auto Export AHK Script is located in the thread linked below this: Relevant Links: - Dynamic Hotkeys Thread: DAS - Dynamically Calculate Shares on %Risk or $Risk - Hot Key + Configuration, Updated 9/10/19, v2.1 - DAS Trader Pro Tips and Tricks - Bear Bull Traders Forums - AutoHotkey Download: https://www.autohotkey.com/
