Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation since 07/27/2023 in all areas

  1. 2 points
    We can now process orders anytime, just like if we did it manually. All the details here.
  2. 2 points
    Hey everyone! Excited to have found the BBT community. I'm 44 and recently moved to the Cincinnati area. I have driven past a billboard about learning day trading for over a year now, and for some reason it resonated with me this week. Mainly I think what prompted this was listing to Tom Bilyeu taking about breaking the time for money equation. I've had in interest in stocks and stock investing for a long time now, but I've always hesitated about day trading for all of the negative stigma around it. But as I started to look into this one company's training program, I started looking around the marketplace and Reddit and have come to believe the overwhelming feedback out there that you don't necessarily need to pay for expensive trainings and individualized coaching, but you DO need an appetite and willingness to learn and the support of a strong community. Enter BBT. I found Andrew's book and the BBT podcast and am grateful for both! I'm not all the way through the book yet, but I'm excited to crush it pretty quickly, join the next onboarding training, then getting after it! I'm really looking forward to getting to meet everyone, learning the trade smartly, then graduating to real investments in the near future. Cheers!
  3. 2 points
    Certainly, let's explain the terms with a little help from Google and ChatGPT! 1. **IDAS** IDAS is the DAS Trader Pro platform designed for mobile devices. 2. **TotalView** TotalView is Nasdaq's premier data feed, which displays every single quote and order at every price level for Nasdaq-, NYSE-, MKT-, and regional-listed securities on Nasdaq. It provides visibility into all displayed quotes and orders attributed to specific market participants, including access to total displayed anonymous interest. 3. **IEX Deep** DEEP is used to receive real-time depth of book quotations directly from the IEX Exchange. The depth of book quotations received via DEEP provides an aggregated size of resting displayed orders at a specific price and side, without indicating the size or number of individual orders at any price level. 4. **Forex (Foreign Exchange)** Day traders in the foreign exchange (Forex) market engage in buying and selling currency pairs within the same trading day, with the aim of profiting from short-term price movements. Forex is highly liquid, and day traders use leverage to magnify potential gains or losses. 5. **FLOAT Data** In the context of day trading, "FLOAT" typically refers to the public float of a stock. The public float represents the number of shares available for trading by the general public, excluding closely-held shares. Day traders often consider the float when assessing the liquidity and potential price movements of a stock. 6. **Replay Level 1** Traders can use the ability to replay Level 1 market data to analyze their past trades or to practice and refine their strategies. It allows traders to review the last traded price, bid and ask prices available during historical trading sessions. 7. **ARCA OPRA** For day traders, "ARCA OPRA" might refer to options trading data on the NYSE Arca exchange that is reported to the Options Price Reporting Authority (OPRA). This data is crucial for options traders to make informed decisions regarding options contracts listed on the NYSE Arca. 8. **Level 1** Level 1 data, in day trading, provides essential real-time information, including the last trade price, bid price, and ask price. Day traders often use this information to monitor current market conditions and make quick trading decisions. 9.** Level 2** Day traders rely on Level 2 data to gain a deeper understanding of market depth. It includes a list of current buy and sell orders, the number of shares or contracts available at each price level, and quotes from market makers and ECNs. This detailed information helps day traders assess market liquidity and identify potential entry and exit points for their trades. voilà! AND the realtime data feed is included in those DAS subscribtion!
  4. 2 points
    Just to confirm, the proper order is: 1. double click the StopLoss price 2. hit the entry button (order fills) 3. hit the exit button (without clicking on anything) 4. go for a swim in the pool 5. come back later and count your money I'm glad to give back to the community. (and programming hotkeys is fun!) Good luck! Russell
  5. 2 points
    Okay, I've got some HotKey Scripts for you to TRY OUT IN SIM. (never test things live) Each trade has two HotKeys. The first one is the entry order where you double-click your Stop-Loss point. (I basically just removed the TriggerOrder from your HotKey Script and moved it to my Exit Script) The second one is the exit order which you would place immediately after your entry order is completely filled. Don't double-click anything between the "fill" and when you activate the Exit HotKey because it gets it's calculations from your Entry HotKey. Here is what the Exit HotKey does: 1. places a one-share RangeMarket order with a 1R/1R range. 2. Triggers a remaining-shares RangeMarket order with a 3R/BE range. There is no other way to do what you want (as far as I know) without the tiny one-share order to trigger the Stop-Loss move to B/E. With these HotKeys, this is what "should" happen (and it worked for me in SIM today). If your 1R Stop-Loss is hit, the Trigger order exits your WHOLE position "near" your target Stop-Loss. If the 1R profit point is reached, you will exit one share, then the Trigger order will be sent so that you will either profit 3R or B/E on the remaining position. (You could change the exit orders to exit more of your position at 1R if you want to use these HotKeys to "partial" at 1R... something like Share=POS*.5 or Share=POS*.33 with your Trigger order remaining Share=POS) Be aware, the first exit order of one share will cost you about $1 in fees more per trade if you are with IB. (I mistakenly said $2 earlier) (Fees are no longer a danger when your orders are more than 200 shares) Here are the Scripts, you should be able to copy-paste them directly into your HotKeys. LONG ENTRY CXL ALLSYMB; StopPrice=Price; DefShare=BP*0.975; Price=Ask-Price+0.00; SShare=25/Price; Share=DefShare-SShare; DefShare=DefShare+SShare; SShare=Share; Sshare=DefShare-SShare; Share=0.5*SShare; TogSShare; ROUTE=LIMIT; Price=Ask+0.1; TIF=DAY+; BUY=Send; DefShare=200; Price=Ask-StopPrice*3+Ask; LONG EXIT CXL ALLSYMB; Route=STOP; StopType=RangeMKT; LowPrice=StopPrice; HighPrice=AvgCost-StopPrice+AvgCost; Share=1; TIF=DAY+; Sell=Send; TriggerOrder=RT:STOP STOPTYPE:RANGEMKT LowPrice:AvgCost HighPrice:Price ACT:SELL QTY:POS TIF:DAY+; SHORT ENTRY CXL ALLSYMB; StopPrice=Price; DefShare=BP*0.975; Price=Price-Bid+0.00; SShare=25/Price; Share=DefShare-SShare; DefShare=DefShare+SShare; SShare=Share; Sshare=DefShare-SShare; Share=0.5*SShare; TogSShare; ROUTE=LIMIT; Price=Bid-0.1; TIF=DAY+; SELL=Send; DefShare=200; Price=StopPrice-Bid*3; Price=Bid-Price; SHORT EXIT CXL ALLSYMB; Route=STOP; StopType=RangeMKT; HighPrice=StopPrice; LowPrice=AvgCost+AvgCost-StopPrice; Share=1; TIF=DAY+; Buy=Send; TriggerOrder=RT:STOP StopType:RangeMKT LowPrice:Price HighPrice:AvgCost ACT:BUY QTY:POS TIF:DAY+; Hope this helps, Best, Russell Landwehr
  6. 2 points
    In this video AdventureDogLA shows us how to set up Risk Controls in DAS Trader Pro. Risk Controls enforce limitations such as maximum daily loss, maximum shares traded per day, etc. Risk Control Page is a safety net to keep in control our loses, either to have an external control over our behavior as traders or due to a contingency such as failures in the internet connection, electric power outages, broker failures, etc. You can find "Open Risk Control Page" in DAS Trader Pro Account window, just right-click in any row of that window and Risk Control Page will open as a popup browser window to let you update your risk control settings. Some considerations: 1. This configuration works with real accounts and simulator 2. You can deactivate settings "Risk Control Page" anytime by leaving all in blanks and clicking SUBMIT 3. When you are using DAS linked to IB, or simulator, the Risk Control settings are handled by DAS. DAS staff updates your settings manually (the form is emailed to them) anywhere from 2 to 30 minutes during business hours. 4. In LOSS fields, enter a positive number. 5. “No new order” avoids orders for the current day 6. “Pos Loss” = Position loss. 7. “Enable Auto Stop” will automatically close your positions when you hit the Max Loss / Total Loss. 8. “Max Share - Max auto stop execution share per day” = How many shares can be sold / bought by the Auto Stop mechanism. 9. “Max Auto Stop Order Size” = Maximum size per order made by the Auto Stop mechanism. 10.“Delay for next order if exceed max order size (sec)” = Time between orders if the Auto Stop needs to place multiple orders to close your positions. 11. “Stop Gain Account Net Realized PL Thresh“, “Drawdown Percent of Max Net PL“ , “Pos Stop Gain Thresh “ and “Drawdown” - Like Auto Stop but for gains. The threshold is the profit the Stop Gain is looking to hit, the Drawdown is how much it can drop from that target before your positions are closed. Example, you set a threshold of 2000 and drawdown of 20(%). When you make 2000 in P/L, the Stop Gain will trigger, and will close your positions if you drop 20% ($400) from that value, closing you out at $1600 Net P/L.
  7. 2 points
    To complete the rider agreement DAS Trader - Interactive Brokers IBKR: the first two slots is today's date the third slot is DASTRADER and the forth slot is you U account numbers you will only sign the customer side and upload, don't worry about IB side signature, it will be sent after upload to IB to fully connect the account
  8. 1 point
    +$1022 TSLA Breakdown from Previous Day High, AMD/NVDA VWAP Breakouts Trade Date: 7/5/24 TSLA, gapped up and extended on the daily, saw a rejection of R1/R2 and was testing previous day high. I shorted at the break of PDH to S1/PDC and all out at S2 before the bounce. AMD, gapped up on the daily and ran from the gates. Sold off hard to R5/R6/Pre-Market High but bounced back to the trend lines on the 1 min. I went for a hold of trend and VWAP breakout, initial small size, then added as we held trend and were making higher lows. There were no cam levels to partial at and used HOD and pure momentum to exit. This was a hard trade to gauge however QQQ was breaking out. NVDA, rejected R2/PDC early but was holding VWAP. Went long for a scalp to R1/PDC. The 5-min chart was ugly and I did not feel confident holding this beyond momentum thrusts to liquidity pools. Thought we would test PDC again but we were rejecting and exited at B/E before the selloff! #TSLA #TESLA #AMD #NVDA #NVIDIA #VWAPBreakout #LODBreak
  9. 1 point
    +$602 NVDA VWAP Breakout to Camarilla Pivots! AMD PDC Break towards liquidity Trade Date: 7/2/24 NVDA started off wicky but once a large engulfing candle formed I went long above the 1-Min 9/20 trend and VWAP. We spiked up to S3 and sold off but held trend. Added more with the close above VWAP, partialed at S3 heavily, hit some chop and got spooked out at VWAP. We had nice bounces from VWAP and re-entered at the break of S3 towards S2, S1, and large liquidity at 123. Later, I saw a bounce from 121.89 (20EMA daily) and tried for another VWAP breakout towards S2 again but only got some partials and stopped out at B/E. AMD ran up and sold off today. Once we hit PDC and had a hard rejection of R1 and crack of LOD, I shorted towards liquidity of 157 and exited fully at 1-Min 200 SMA. You have to be patient and wait for the crack of PDC to trigger stops before you enter to have the greatest chance of success. Brian Pezim taught me this. #NVDA #NVIDIA #VWAPBreakout #PreviousDayCloseBreak #CamarillaPivot
  10. 1 point
    Hey Wis, welcome, I am curious how you 'almost' lost $500, it sounds that that may have been a trade/s that you let go beyond your initial stop. The #1 rule I ask myself everyday when a trade starts to go against me is 'does this make sense'. I did this today! When I say 'No' I exit the trade. Losing money hurts but staying in a trade that does that make sense hurts move, even if you don't lose money on it. The feeling of not being in control is much worse. Suggestion, downsize your max loss risk to under $50 per day for a couple of months. See you in chat!
  11. 1 point
    as you anticipated right, there is more to discover. see this and especially this good luck!
  12. 1 point
    Hi everyone! My name is Daniel, and I'm from the San Francisco Bay Area. I currently work at a computational biology startup, but I've been interested in trading for awhile now. I finally mustered up the willpower to learn more about it, and I recently finished Andrew's How to Day Trade for a Living book. I'll be honest, I didn't have a set goal in mind when I started this journey, but I've been hooked ever since I started reading the book. It's been a long time since I've enjoyed doing something so much, and I want to learn as much as I can as quickly as possible. I've been attending the morning pre-market and trading sessions, but I'm very much a novice, and I'm still figuring out how to set everything up. If anyone is also new and wants a buddy to learn and trade with, feel free to message me and we can connect! Looking forward to meeting other traders, and I hope I'll meet you all soon Best, Daniel
  13. 1 point
    @peterB is way better then me with those question. best!
  14. 1 point
    Hi, I’m planning to start day trading from the UK. I have set up an IB UK account to be linked to Dastrader. Please let me know if there are downsides with this set up trading US markets from the UK? Thank you
  15. 1 point
    $PRICE+($TARGETR*2); this is not possible in DASTrader as it dooes not know the mathematical logics and brackets you need to do $PRICE+$TARGETR+$TARGETR instead see the log for the errors you get. there will be an error about route not being "LIMIT" etc. overall you should switch to the new syntax and forget the old one as the calculations done in the old syntax are now useless and it will be easier for you to understand what is going on rather than studying why the switches between SShare and Share are there
  16. 1 point
    solution of 2024 here https://open.substack.com/pub/traderpeter/p/das-trader-advanced-hotkeys-part-777?r=1wujo4&utm_campaign=post&utm_medium=web
  17. 1 point
    https://open.substack.com/pub/traderpeter/p/das-trader-advanced-hotkeys-part?r=1wujo4&utm_campaign=post&utm_medium=web if your account is 50000 just set the static risk to $50.
  18. 1 point
    For those who may be interested: I have successfully transitioned from day-trading stocks to day-trading options @avi style. I ONLY buy calls or puts for day-trading. There are videos from @Megan and @Avi in the bbt education center about this approach and the advantages of day-trading options vs stocks such as lesser capital requirements etc. Thank you @megan and @avi. https://bearbulltraders.com/course/webinars-mentorship/lesson/strategy-2/topic/setup-execution-results-avi/ https://bearbulltraders.com/course/options-webinars-2/lesson/the-power-of-options-for-day-trading-megan-5/ Also, I have made the transition from DAS-TDA to thinkorswim(tos). The main misconception out there is that the FILLS in tos are worse than that of DAS. However after couple of years of DAS-TDA and comparing my experience to tos, I can assertively say that the tos fills are not that bad especially for day-trading options. The main things that are missing from tos is a good Level 2 and scripting like DAS has. If you get Bookmap, the Level2 void can be overcome. Since I am day-trading options, the Active Trader on tos works well and I am not missing the use of scripts.
  19. 1 point
  20. 1 point
    I am confused with the difference between the DAS Trader Pro account and the simulator account. I understand that the simulator is not connected to a brokerage and costs approx $100/month. The DAS Trader Pro is connected to the brokerage and costs $150/month. I currently have a 3 month simulator plan. I also have an IB account. If I set up a DAS Pro trader account does that mean I will be paying $250/month to DAS for both the Trader pro acct and the sim? Or does the Trader Pro account include the simulator? Do both accounts have to be configured separately, or do the screen formats sync automatically? Can I simply switch from one account to the other, or do I have to log out and re-log into the other. Sorry for the confusion. I was briefly using the IB trading platform and it was easy upon login to choose either paper or live trading. It seems expensive to pay for the DAS pro trader and the simulator separately. Thank you for any help or if this question has already been answered. I did search the forum. Kelly
  21. 1 point
    Andrew mentioned a morning hike, but we´ll finalize details soon and will post them here.
  22. 1 point
    Hello BBT My family and I will be travelling to Vancouver in our RV. We are outdoor people who prefer to stay in a rural campground and not in the city. We also hike several times a week. A typical hike for us is around 5-6 miles maximum as we have two kids with us. I am posting this to see if anyone is planning to do any hiking or outdoor activities that would be good for meeting up and talking trading.
  23. 1 point
    If you have a problem with DAS not keeping the montage window in focus, resulting in hotkeys not working until you get the window back in focus, create the following hotkey to get focus to the montage window. Use this hotkey before hitting an execution hotkey.
  24. 1 point
    I have been working today on 2 hotkeys for myself. The script(s) uses the defined R/R script from previous Kyles hotkeys. It performs the following: Cancels any previous orders for the symbol Enters the trade, ensuring total shares bought is equally divisible by 4 (rounded down); this prevents having extra shares hanging around after the range trades complete or stop out. Creates a range order at your stop level for 1/4 of your initial shares bought with a profit level of 2R Creates a range order at your stop level for 1/4 of your initial shares bought with a profit level of 3R Creates a range order at your stop level for 1/4 of your initial shares bought with a profit level of 4R Creates a single order at your stop for the remaining 1/4 shares; This allows you to ride the last 1/4 to whatever level you want before exiting As with Kyles hot key scripts, you double click your chart at the level you want to place your stop then press your button or hot key The Script for the long entry CXL ALLSYMB; StopPrice=Price-0.01;DefShare=BP*0.5;Share=DefShare*0.333*Price*0.01;Price=Ask-Price+0.01;SShare=Share/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;Share=Share/4;Share=Share*4;TogSShare;ROUTE=SMRTL;Price= Ask+0.05;TIF=DAY+;BUY=Send;DefShare=1000;Price=Ask-StopPrice*2+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;Price=Ask-StopPrice*3+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;Price=Ask-StopPrice*4+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.3 ACT:SELL STOPPRICE:StopPrice QTY:Pos*.25 TIF:DAY+; and the Short CXL ALLSYMB; StopPrice=Price+0.01;DefShare=BP*0.5;Share=DefShare*0.333*Price*0.01;Price=Price-Bid+0.01;SShare=Share/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;Share=Share/4;Share=Share*4;TogSShare;ROUTE=SMRTL;Price= bid-0.05;TIF=DAY+;SELL=Send;DefShare=1000;Price=StopPrice-Bid*2;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;Price=StopPrice-Bid*3;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;Price=StopPrice-Bid*4;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice+0.3 ACT:BUY STOPPRICE:StopPrice QTY:Pos*.25 TIF:DAY+; Long $50 Risk CXL ALLSYMB; StopPrice=Price-0.01;DefShare=BP*0.5;Price=Ask-Price+0.01;SShare=50/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;Share=Share/4;Share=Share*4;TogSShare;ROUTE=SMRTL;Price= Ask+0.05;TIF=DAY+;BUY=Send;DefShare=1000;Price=Ask-StopPrice*2+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;Price=Ask-StopPrice*3+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;Price=Ask-StopPrice*4+Ask;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:StopPrice HighPrice:Price ACT:SELL QTY:POS*.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.3 ACT:SELL STOPPRICE:StopPrice QTY:Pos*.25 TIF:DAY+; Short $50 Risk CXL ALLSYMB; StopPrice=Price+0.01;DefShare=BP*0.5;Price=Price-Bid+0.01;SShare=50/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;Share=Share/4;Share=Share*4;TogSShare;ROUTE=SMRTL;Price= bid-0.05;TIF=DAY+;SELL=Send;DefShare=1000;Price=StopPrice-Bid*2;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;Price=StopPrice-Bid*3;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;Price=StopPrice-Bid*4;Price=Bid-Price;TriggerOrder=RT:STOP STOPTYPE:RANGE LowPrice:Price HighPrice:StopPrice ACT:BUY QTY:POS*.25 TIF:DAY+;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice+0.3 ACT:BUY STOPPRICE:StopPrice QTY:Pos*.25 TIF:DAY+; Everything prior to defshare=1000 in each script is completely from the original Risk/Reward Hotkeys except the bit of code that ensures the number of shares is equally divisible by 4. Feel free to give them a try and let me know if there are any issues.
  25. 1 point
    I use both, and from my experience, some orders do not get filled, and has a huge slippage on the stop market orders. Especially volatile stocks with wide spreads like nvda. You have to do the math, for the vol of shares I trade on nvda, the avg cost for the week using IB is around $60, about 250/mth. TD, free. But I do notice that I have bigger slippage, sometimes up to .30-40 on entries, and stops compared to IB. However, the overall performance on stocks that has slower moves, and tighter spreads, such as $aapl, not much of a difference. it is a toss up for now, but as you move into bigger shares, and volume, then you have to calculate if the slippage loss on a given stock is worth the commission free trades. For now, yes for me on nvda, since most of the time, I am looking for min. of 2-4 dollar move, and the .15-25 slippage in entries, are. usually 5-7.5 loss, but make up for it in the trade. Limit orders are decent, but market orders execution on TD is terrible. But as i said, I have never been able to accurately tell how much slippage, but some of the stop/market orders have slipped by .20-35 cents. If you have 100-200 shares, that's 35-70 dollars. Yes, I have seen such loss on a stop that is suppose to @b/e. However, Ib has some slippage on market orders, and stop/market. But it is usually .5-10 cents. Nominal. What I am thinking of doing is placing a bracket order .25-40 cents in front of my b/e limit order. The only danger about using a limit order, if it doesn't get filled, you can face a big loss. Stop market, you will get filled, but not at the price you have it placed, due to the slippage. so, yeah, one of those things that we deal with. I can't help but to think the mm and the brokers benefits from this somehow, but there is no way to prove it. I think they use micro pennies to make profits, but probably make a killing taking in the diff between a spread, and the slippage, if they can slip it in there. Happy trading Everyone.
  26. 1 point
    Hello everyone, What plan do I need for the Trade Ideas: Premium or Standard? Do I need it when I am going to start just trade on simulator? Thanks in advance, Lana.
  27. 1 point
    Hi Yudyud, for Tradingview and Bookmap, you can use the feed from a broker like IBK. for tradingview for Bookmap good luck!
  28. 1 point
    Qué tal, me llamo Angel, soy de Monterrey. Empecé en BBT desde finales de 2023. Es mi segundo trimestre en el simulador. Saludos a todos.
  29. 1 point
    Yes I use leverage but my rules are around trade size rather than using a certain amount of leverage. For example (not my real numbers), if I want my stop size on TSLA to be 50c and I want to risk $100 on my trade then I want 200 shares, regardless of whether that means I'm using no leverage or all my leverage that's the trade I want to take. Of course with margin you can get yourself in serious issues if you don't trade properly and abide by your stops but that's for each individual to assess their own risk of not doing that (and if you can't then trading is probably not the right career).
  30. 1 point
    Hello I have been slowly burned by the market for 1.5 years now. It's really time to put up a journal to track my own trades. I am too poor to afford to pay for monthly fees. Please help me review my trading journal on Google Sheet to see if there is any data that you think I should track. If you are also interested in using my template, go ahead to download the Google Sheet into your Google drive for use. Link: https://docs.google.com/spreadsheets/d/10dgCFdvouhnoF4YbNMIxYCqxuNkv9X6kh_YmPH8ifzk/edit?usp=sharing Thank you Jason
  31. 1 point
    Hi everyone and welcome to our new forum on swing trading. As you likely know, swing trading involves taking positions in a stock or other security and holding that position for as short as overnight to days or weeks or even longer. If you are new to swing trading and want to learn more, reading Brian Pezim's book "How to Swing Trade" would be a good starting point. It is available on Amazon. We expect this forum will be used by our members to present and openly discuss swing trading opportunities. The one advantage of swing trading is that the trader has the opportunity to slow the decision process and plan their trades without having to make a quick decision on whether to enter a trade. Thanks in advance for being part of this forum and we hope this forum can offer up some profitable opportunities for our members.
  32. 1 point
    Hola, amigos, creo que no me había presentado, aunque ya llevo rato aquí. Mi nombre es Josué De Lara, soy de México donde vivo actualmente, aunque la mayor parte de mi vida la he pasado en Texas donde estudie desde la preparatoria hasta el doctorado. Me interese en el “daytrading” gracias al libro de Andrew, me fascino. Me gustaría mejorar en el daytrading con el propósito de mejorar mis ingresos, ya que en Latinoamérica no son muy buenos aún con grados académicos avanzados. Hice una hoja de calculo para calcular la cantidad de acciones a comprar de acuerdo con la emisora. Me es útil ya que utilizo TWS en vez de DAS y no puedo usar las “hotkeys” de Kyle. Espero le sea útil a alguno de ustedes. https://docs.google.com/spreadsheets/d/1ElLZ2h41da1xgtz6KI_Df0PeqP754kRMDhJe60aefL4/edit?usp=sharing
  33. 1 point
  34. 1 point
    Hola todos, mi alias es Troady, nombre real es Luis Arteaga, Cubano de origen, Norteamericano de nacionalidad despues de haber sido Holandes tambien por 18 años. Resido actualmente en Naples, Florida desde el 2004, donde me rompo la cabeza a diario dirigiendo una compañia de transportes que poseo con varios camiones de carretera. Soy graduado del Intituto tecnologico de Utrecht en hardware y software de computadores (clase del 87), aunque mi pasion hasta hace poco era manejar camiones y ir a lugares remotos, gracias a eso conozco varios continentes, cerca de 60 paises y hablo varios idiomas. He hecho algunos pinitos en Forex y Crypto, aunque sin resultados a destacar, llevo siguiendo stocks y Wall Street por algun tiempo y hace poco choque con el libro de Andrew Aziz "Day trading for a living" y me impresiono lo sincero, franco y explicativo del libro. Decidi contactar a alguien de la comunidad en Español y despues de hablar con Abiel, decidi unirme a la comunidad de traders. Aqui estamos, espero que por mucho tiempo y espero hacer buenas amistades dentro de la comunidad.
  35. 1 point
    Hi there I am sharing a sample swing trading plan to trade stocks in short-term rallies in a long -term uptrend. This is for discussion purposes only. Please feel free to send comments/discussions so our BBT Forum can benefit from same. The sample plan is based on information from instructor training, textbooks, Webinars, other swing trading plans, and information available on the internet over last few years. One good point up front is to keep things simple and this seems to be working for me. This is a sample base Stock Trading Plan that can be detailed to suit individual requirements. In summary, the plan generally consists of: 1. Prepare a Watchlist of stocks with good fundamentals: growth and revenue 2. Fundamental analysis of each stock in the Watchlist 3. Technical Analysis of each stock in the Watchlist: Trend, trend strength, momentum, and comparison to market, sector, industry and sub-industries 4. Graphical analysis/markup: confirmation of: long-term trend, short-term retracement, and start of short-term rally; buy point, projected target price, projected target time frame, stop loss exit point, partial and final profit exit points 5. Risk Management 6. Miscellaneous routines and discussions Initially the routines seems time consuming but after time it gets better. Please note this is not an investment advice. Please seek investment advise from your own investment advisor. The attachments and notes are for illustration and discussion purposes only on our BBT Forum. 1-Swing Trading Plan - Short-term Swing Trading - Presentation.pdf
  36. 1 point
    I made a small application to review my trades and make some statistics about the results of each strategy. I wrote it because I needed some tools to speed up my journaling and to help me reviewing my trades and didn’t find something out there that was exactly personalizable for my style of trading and my way of journaling... Thought that sharing it with you guys would be a way to give back some of the great help that I received from this community! Features The application imports automatically from the DAS logs your trades and displays: The results for each trade and trading day All the entries and exits If you use hard stops based on trigger orders, the risk of the order/trade The risk/reward of the trade, based on the S.L. orders or on a fixed $ amount You can create trading strategies and associate to each trade additional information: The strategy used Whether the setup was valid or not according to the strategy, and if your execution of the strategy was good The theoretical maximum target that could be reached -> based on that the app calculates the maximum result of the trade if you closed your whole position at the max target If the trade is a “playbook trade”, i.e. if you want to add it to the list of your “ideal” trades for this particular strategy You can associate custom tags to the trade You can choose to exclude the trade from the calculations of the daily results and of the statistics You can attach a screenshot from the clipboard, or import it from a file You can add quick comments as well as a detailed review of the trade Based on that, the tool calculates some statistics: Number of trades and global result of the trades in each strategy Number of winners/loosers, percent winners/loosers and average winner/looser in the strategy Average result and average max result of the trades in the strategy Average risk/reward and max risk/reward of the trades in the strategy You can filter the trades for which you want the statistics: Start date/end date Time of day Strategy Direction (long/short) Whether the setup is valid, and whether the execution was good You can select the playbook trades only You can filter the trades by tags You can select only the winner or the looser trades You can filter by trading account You can visualise the equity curve of your trades: You can filter the trades used to calculate the equity curve The equity curve is synchronized with the statistics Screenshots Download Setup: Download and run the installer inside the zip. Once installed, just select the DAS Trader directory and the application will automatically start loading your trades. If you already installed a previous version of the program, the installer will automatically import all your data. In any case you can transfer/backup your data through the Import/Export functions from the File menu. Download link: TradeReview 1.3.1 Setup New in 1.3.0: Equity curve visualization, synchronized with the filters of the Statistics tab Possibility to edit the trade details directly from the table + added context menu for trade exclusion/details Joined the Trades and Analysis tabs (can be reverted through settings) Possibility to filter the trades also by long/short direction Possibility to add some brief comments about the trading day Possibility to import the last DAS screenshot Possibility to visualize more fields in the trades tables Bug fixing New in 1.3.1: Possibility to filter the trades by time of day Trades executed in replay mode are discarded Bug fixing
  37. 1 point
    Hello, Following hotkey is Kyle's for dynamic risk based off your stop-loss and entry: StopPrice=Price-0;DefShare=BP*0.925;Price=Ask-Price+0.00;SShare=50/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTL;Price= Ask+0.05;TIF=DAY+;BUY=Send;DefShare=200;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.05 ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY+; This is my edited version: StopPrice=Price-0;DefShare=BP*0.925;Price=Ask-Price+0.00;SShare=280/Price;Share=DefShare-SShare;DefShare=DefShare+SShare;SShare=Share;Sshare=DefShare-SShare;Share=0.5*SShare;TogSShare;ROUTE=SMRTM;Price= Ask+0.00;TIF=DAY;BUY=Send;DefShare=200;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.05 ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY; It is modified slightly with Ask+0.00 instead of Ask+0.05, and DAY instead of DAY+. Today I took a trade on SPI with a .20 stop-loss, risking $280. So 280/.20=1400 shares, but I was only bought in with 233 shares. Any ideas why that might be would be appreciated, this has happened a couple times now, seemingly randomly. Cheers, RR
  38. 1 point
    Kylie, I saw something strange while using the hotkeys on CMEG DasTraderPro platform . Using this hotkey : StopPrice=Price-0.01;DefShare=BP*0.75;Price=Ask-Price+0.01;SShare=40/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=300;TriggerOrder=RT:STOP STOPTYPE:MARKET PX:StopPrice-0.02 ACT:SELL STOPPRICE:StopPrice QTY:Pos TIF:DAY+; Observation : The hotkey was triggered and large number of shares where bought with the hope of using the 40 dollars stoploss on my BP 30k account . Now the stoploss vanish from the trade window buy did not stop my trade . I end up almost blowing up my entire trading account as the stoploss did not trigger as expected . Kyle could you PLEASE check and confirm whether the script i am using is the right . Please note that the hotkeys above worked fine as expected on the simulator(worked well as expected on sim account , but not live account) , but not during a live trading session . Kyle am I missing a point here ? Please do advice .
  39. 1 point
    i have observed similar issue stated above . Could it be related to the dasTraderPro IB version ?
  40. 1 point
    Hi Matt. Journaling your trades while in sim will help to build your habit to do it and to improve as you advance in your sim training, so when you start live your journaling skills will be developed and template will be tested, improved and ready. Before activating your DAS sim subscription make sure you: Watch all Classes and DAS Lessons in Education Center. read this forum post too. If you are a Lifetime Member watching Success Webinars and Psychology Webinars is advised. Ideally you should watch all the content in the Education Center and webinars. Take a look at this 12 week simulator program. You want to be familiar with everything in that program. Watch these DAS Trader Tutorials in youtube. Every week we add new videos. Prepare your trading plan and journal template. In the Downloads section of the website you will find a Trading Plan and Journal template https://bearbulltraders.com/lessons/trading-plan-template-2/ Download the BBT TradeBook from the Downloads section of the website. Review it and adjust it as needed. Use our Knowledge Base and Forums to search the questions you may have. If you search and don't find answers, ask here in the forums. When you are ready, download the DAS 14 days free trail and set it up as you prefer. After the 14 days you can activate your 3 months DAS subscription, keep using the same DAS installation you used for the trial. Best.
  41. 1 point
    Somebody in the chat was unable to see their trades on the Chart today (green and red triangles). Here is how to add or remove them. 09/23/2019 UPDATE: in the new version we move it to the Chart Area Configure window, right click the chart->Chart Area->Configure Area Thank you to Seth who reported this in the chat Double-click the chart, or right-click and select Study Config Highlight Price (Candle) Click Config At the bottom, there are options to Show Trades (executions) and Show Orders (open stop/limit orders)
  42. 1 point
    Saludos a todos ! Soy Pablo, conocido también como Aurbano en el chat ... y aquí estoy desde hace más de 1 año tratando de ayudar un poco con lo poco que he aprendido a base de pelearme con la plataforma jejeje Soy Español, y durante 20 años me he dedicado al mundo de la consultoría técnica y consultoría de negocio.... acabando en el trading como una nueva forma de vida. Un saludo a todos compañeros ! Pablo
  43. 1 point
    This exists now. In case anybody finds the above instructions confusing, here is the step-by-step on how to set up "click and add" price alerts. Steps: 1) Right click on a chart > Chart Area > Config Area. Check the box in the bottom-right that says "Enable placing alert on chart". 2) Next, you must create a hotkey (Setup > Hot Key > Add New Item). I have simple scripts for when price crosses above or below my alert price. I'll share them: Price crosses ABOVE alert price: AlertName=newalert;AlertType=LastPrice;AlertOperator=>=;AddAlert Price crosses BELOW alert price: AlertName=newalert;AlertType=LastPrice;AlertOperator=<=;AddAlert 3) Open the Alerts window (Tools > Alert & Trigger). This window NEEDS to be open for the hotkeys to work, so I now just have it permanently fixed in my Desktop layout. 4) Now, when you press your hotkey, an arrow with an "A" next to it will show up on the chart, and you simply click the price where you'd like the alert to be placed. (NOTE: The first time you click, you'll get an error message that says "Placing alert failed". Just click again and it will work. This is a bug and I've reported it to DAS already.
  44. 1 point
    I am using a streamdeck XL. Thanks to Kyle for the ICONS and DAS scripts. I can now focus on process, trading well and less calculating. I am testing in SIM, and I may need to separate the LONG MENU and SHORT MENU to different profiles.
  45. 1 point
    Hi Kelly, You do not have to pay for both, when you get Das Trader Pro with IB or any other broker. It comes with a demo account as well. That is included in your monthly fee, you will only be paying $150. It is also very easy to switch from Live to Demo with Das Trader Pro. There is one login only but once you log in you have several options to switch from Real and Sim, you can do it manually on the montage, you can define it by hotkeys or you can change the overall global setting to Real or Sim. This post has more information on how to switch between sim and real. Hope this helps. Thanks.
  46. 1 point
    Hi Guys, I wanted to share a hotkey command / script I got from @Robert H that I find very useful. Let me tell you a short story about my frustrations in covering a position. There were times that I'm in a stock just right at the open and it shoots super fast and in favor of my direction. Ofcourse your initial reaction is in shock for few milliseconds. And Instead of covering my LONG/SHORT position, I always end up adding half or full at your target. Imagine how stressful that was! So I've always been curious if there's a magic hotkey to cover either a LONG or SHORT position without worrying which side you are in. And believe or not, @Robert H has the answer! Not sure if some of the guys in our BBT forum has this command already but Let me share it anyways and see if we can tweak it for our favor. ROUTE=SMRTM;Share=Pos*0.5;TIF=DAY+;SEND=REVERSE (for half position Long/Short) ROUTE=SMRTM;Share=Pos;TIF=DAY+;SEND=REVERSE (for full position Long/Short) The only issue I think with this I guess is, it's set as Market order. Meaning, you can get filled at any price (blank cheque) and this is bad if you are trading non liquid stocks or stocks that has huge spreads. This is probably only suitable for smaller trade sizes or with liquid stocks that has tight spreads. If someone has an idea to convert this into a LIMIT order to Hit the Ask when you're LONG and Hit the Bid when you're SHORT that would be great! Hope you find this hotkey useful somehow. Cheers, Ryan (ryan_pdt)
  47. 1 point
    Norm, this one's for you! Ok, here's mine... cobbled together from 2 older machines and a discarded large monitor...but notice all that empty space on the wall? That's where my husband is going to hang a 50" tv if I make my number. I mostly swing trade, so this set up isn't a hindrance currently, but as I develop my day trading skills, this will clearly not work. For those who may wonder about 2 laptops, I am trading 2 different accounts and for the way my brain is wired, this keeps me from getting confused.
  48. 1 point
    Hi there, This might be a really easy question but how to change the color of Horizontal line, mine is stuck in light yellow, I can barely see it when I try to draw support and resistant lines. Thanks!
  49. 1 point
    Perfect, I read this right after spending half an hour creating 4 Montage windows and manually adding all the hotkeys and changing LVL 2 shading haha
  50. 1 point
    Aloha, my name is Paul and I live on Maui. I have been interested in trading for years and finally had an opportunity when I sold my snorkel business. I am a single father raising two beautiful girls (4 and 6) and love that I can be done with my trading day usually before my girls even wake up, thanks to the time difference in Hawaii. I read Andrew's book among many other and really liked his style so I joined his classes and got a simulator account. I traded in the Simulator for 4 months and went live December 1st. I feel so fortunate to have found Andrew's book and day trading, it has changed my life. The chatroom offers great support and camaraderie, I couldn't think of trading without it. Many Mahalo's to Andrew and Pez and all the support staff.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.