Jump to content
Medved Trader Forums

3acor

Members
  • Posts

    291
  • Joined

  • Last visited

Everything posted by 3acor

  1. Which checkboxes should be checked? I have them messed up. I am using IB. This issue happens on both my PC and my laptop and I even uninstalled Medved completely and downloaded it again with the default settings and same issue. It happens only when I change the price from the capsule by double clicking. It doesn't happen when I drag the capsule
  2. I am still seeing this error after the two BETA updates, is this just from my side?
  3. I am not sure why it is not working. This is my code applied to NNDM on Jan25 on the 120min frequency at 7am premarket //PM_Low variable is Horizontal Line, Low, including premarket //Prev_High variable is Horizontal Line, PrevHigh, Reg. sessions only double PM_Low_now = 0; int DayNum = -1; public void MainCalculation() { if (DayNum != TradingDay.DayNumber) { DayNum = TradingDay.DayNumber; PM_Low_now = PM_Low; } else { PM_Low_now = Math.Min(PM_Low_now, PM_Low); } if (PM_Low_now > 0.98 * Prev_High) { SetColor("green", Color.Green); } }
  4. So what is Last in Horizontal Line, same as SymbolData.Last? I could use High and Low instead but I would like to use the High/Low for the current timestamp such as in the post below. But I am not sure how to do it if I want to apply it for multiple trading sessions for backtesting.
  5. In Indicators on the chart there is LimitUp/LimitDown
  6. I formatted my laptop and its a huge difference. Very fast and smooth now no issues
  7. yea I would like that as well as I don't look at the last digits and its better visually if its in K or M, maybe if possible to put an option for both. At least the AvgVol since its sable
  8. When trading low floats, I would like to take profits a bit before the Limit Up level is reached (before the halt). So if the halt level is 19$, I want to put my sell profit order at 18.9$ or 18.95$ just before it halts. Is it possible? Thanks
  9. Yea it does but I changed it anyway. If using Horizontal Line with Value "Last", it will consider all the price levels that happened during the trading session since all these prices were "Last", right?
  10. Maybe I had an Else If statement that was returning the same results that was bugging it? Or maybe it is me who is doing something wrong Anyway looks like it is fine now
  11. if (Last > Prev_Low && Last < Prev_High && Last > EMA20) { SetScanResult(@"bullish"); SetColor("blue", Color.Blue); } Last,Prev_High,Prev_Low are Variables based on Horizontal Line indicator. Apply it to TSLA on the 120min Frequency
  12. I meant when applying the paintbar to previous data. I apply on 120min frequency, the paintbar shows on the candles. I then change frequency and go back again to 120min frequency and the paintbar won't show anymore. Unless maybe something wrong in the code
  13. So I am putting a paintbar on for example a 120min timeframe, if I change the timeframe and switchback to the 120min TF, the paintbar is gone.
  14. So If I am taking the Bollinger Bands value it will take whatever value was on that bar and not whatever the Bollinger Bands value is right now, correct?
  15. Hey, I have 4 monitors and I am running 22 charts, 1 Watchlist with 20 symbols, 2 scanners on around 100 symbols, News window, Account View I am experiencing lagging quotes and charts take time to load. I am using an old i7-4820k with 24GBs RAM on Windows 10 64bits. I ran the same layout on my laptop i7-8750H, 16GB DDR4, windows 10-64 bits and it seems faster and not much delay. 1) Is this normal to happen? 2) If so, I will probably need to update my PC and I am wondering, to run this Layout, what requirements would I need in terms of CPU,RAM, Graphic Cards.... Thanks
  16. It seems that it is taking the high/low of the candle and including ETH (even though "Reg. sessions value only" is checked) rather than the HoD/LoD during regular session
  17. I meant to say NBBO in Level I Quote Panel. That's great. This does the job for me. Thanks a lot Jerry, I appreciate it Would it be possible to send me that updated version?
  18. Yes I understand that the level II would be empty but I thought the level II window would at least show the top Bid and Ask line along with Bid size and Ask Size(NBBO). Anyway way to display it? I know there is Show Quotes in Charts but it doesn't show the Bid Size and Ask Size. (Would be great and appreciated it if it does )
  19. Yes IB only good for execution. So I just subscribed to Quotestream to give it a try and I know they only provide Level I data to Medved, however I cannot see the Level I data (Bid, Bid Size, Ask, Ask size)
×
×
  • Create New...