Jump to content
Medved Trader Forums

Oliver

Members
  • Posts

    42
  • Joined

  • Last visited

Everything posted by Oliver

  1. I can reproduce the issue with the simple scan below. There are 1590 stocks in the scan but only 10 have SymbolData.Range52Percent above 99 so only those 10 should trigger backfill to get a fast scan.
  2. Hi Jerry, In my scan I do this : So I would expect the code to backfill only symbols where SymbolData.Range52Percent is above 50. It does not seem to be the case. If I hit on 'Start' with 'Auto-Backfill' it takes 30 min to compute the scan for all 1500 symbols. Once it is computed for all symbols the other scans are faster. But I would not expect the first scan to be so slow as only around 100 stocks should be backfilled. Also if I stop and rerun the scan it takes again around 30min to run although all symbols have normaly already been backfilled. code example : if ( SymbolData.Range52Percent < 50) {return;} else {if (SymbolData.Last<=Open[1] or High<=High[1])...}
  3. Hi, I run daily scans on historical data in MT on a portfolio of 1500 stocks. It takes a long time to run in Auto-Backfill mode. How can I setup the scanner to only backfill when necessary? For instance, if I want to filter all stocks with 52Rng% above 50 I do not need to backfill historical data for stocks where 52Rng% is below 50. Is it possible to setup a code like : else { BackFill; ... } What would be the command line to use to backfill only when necessary? Regards, Oliver
  4. Oliver

    Yahoo News

    Hi, I still do not get yahoo news using OXE:ST. I don't get them on any symbols. No yahoo news on US symbols : On AAPL I only get news from source cnbc and finviz source. However I can see yahoo has news for the symbol but I don't get them even if I double click on the ticker in the news screen. Is that a setup issue?
  5. Oliver

    Yahoo News

    Hi, I get no Yahoo news even when I click on a symbol in the News screen although 'Yahoo Finance' is enabled in the DataSources screen. I get news for sources mkWatch, finviz, cnbc.. but nothing on yahoo so I get no news for international stocks like OXE.ST for instance. Is there a setup I should activate for this?
  6. I got it to work on another computer. Fine for me for now then.
  7. Yes I did tun the scan using the latest beta. Attached is a screenshot showing the SetScanResults, version and final display. May be you can help find what's going on.
  8. I used the code below : SetScanResult(0,Ind1); SetScanResult(1,Ind2); SetScanResult(2,Ind3); But MT displays only Ind1 in the result screen. Is there something missing to display the 2 other indicators?
  9. Hi Jerry, I set up my scan this way : But I ony get one set of result in the scanner screen. Is there anything else I need to set to see the three results in the scanner? Thanks
  10. Hi, I am runing a scan on a stock that started traded a few months ago. How can I get the max number of bars of the stock in the scanner. It seems that we get results for BarVolume on date before the trade started trading. in the scan below : I want to replace for (int i=1; i<=500 ;i++) by for (int i=1; i<=500 && i<MaxBars ;i++) but how to get MaxBars? Regards
  11. Hi, Is there a way to display and arrange all MT windows in one main frame? I want to be able to drag all windows at once. Regards, Oliver
  12. Hi Jerry, Please do not change this behaviour. I prefer the current behaviour where drag and drop forces a copy of the stock in a wathlist where a scan is runing. I prefer my original scan list to stay unchanged all time. Thanks, Olivier
  13. Hi Jerry, When I try to move symbols from the scanner to the 'Analyzed' portfolio they stay in the scanner. This workaround only works if the scanner is not running. But if I stop the scan I then loose the list of symbols to move. Is it possible to add the possibility to filter symbols from a given watchlist when scaning? in C# or as a parameter in portfolio screens? Regards, Oliver
  14. Hi, I run a scan that generates signals on many stocks throughout the day. Once I analysed a stock I put it in a 'ANALYSED' watchlist. Therefore I would like the stocks of the 'ANALYSED' watch list to be excluded from the scanner result so that the scanner generate signals only on new stocks not analysed. How can I in my screener filter/exclude stocks from a given watchlist? Kind regards, Oliver
  15. Hello, Is there a simple way to copy a list of tickers from Interactive brokers to MedvedTrader? I m running scans in IB on multiple markets. I would like a simple way to copy the results of those scan from IB to MT. This way I can run custom scans in MT. Is there a way to do so simply? Regards, Oliver
×
×
  • Create New...