Recent content by happy1001

  1. H

    Which Platform is Capable of doing this ?

    Thank you so much @fxshrat Its great to know that Amibroker has such capabilities, not just for auto export to excel, but also for auto import from it as well. :) Thanks and regards
  2. H

    Which Platform is Capable of doing this ?

    Thanks M.ST What you say is true for Auto Scan, but I am talking about AUTO EXPORT of these scan/ exploration results to the EXCEL SHEET. I have not seen such examples till now. If you or anyone else have seen such an example on any forum/site/blog etc. then please share that link. It would be...
  3. H

    Which Platform is Capable of doing this ?

    Thank you so much botpro. Really appreciated.
  4. H

    Which Platform is Capable of doing this ?

    Thankyou botpro and Metamega for your views. Metamega, that was a very comprehensive reply. Thanks a lot. You seem to have real good knowledge of Amibroker. Thanks a lot for sending the link to Marcin or Tomasz as well. It will be interesting to see the replies from the main developers...
  5. H

    Which Platform is Capable of doing this ?

    Hi Friends I am looking for a trading platform which is capable of doing the following - 1. Automatically sending out the SCAN Results / Output to specific excel file and worksheet, after a fixed interval like 5 minutes / 30 minutes. 2. Ability to Read the data from Excel/csv/text files etc...
  6. H

    Which software to use for creating such Chart Snapshots?

    Thanks for your reply wrbtrader. I myself use Snagit and I am a big fan of it. But as you said it will be a lot of work to prepare these within snagit, therefor I was looking for other options. With Regards
  7. H

    Which software to use for creating such Chart Snapshots?

    Thank you NoBias for the wonderful tip. This extension is really good for finding out the source of such drawings.
  8. H

    Which software to use for creating such Chart Snapshots?

    Thank you so much for the idea harami. That looks like a great tool for drawing these.
  9. H

    Which software to use for creating such Chart Snapshots?

    Please have a look at the attached snapshots. I want to know which software would help in making such detailed snapshots in an efficient manner. All this could be done inside MS Paint as well, by drawing each single price candlestick bar with hand and then arranging them one by one, but that...
  10. H

    What keeps a brokerage employee from shadowing your trades?

    Thank you so much for sharing this info. But it is scary to know all this ! I was not aware that it could be so easy for the program developers to steal such sensitive information from the Trader's PC. :eek:
  11. H

    What keeps a brokerage employee from shadowing your trades?

    As already mentioned by others, we cannot prevent our trades being shadowed if we are doing it through the normal brokers. I have no practical idea regarding the "broker-neutral execution platform" so I cannot comment on them. But you can very well use multiple brokers and then execute your...
  12. H

    SQL - Daily/weekly/monthly % Change in Price

    Although I am not sure, but can we use something like this for doing the WEEKLY calculation, by selecting top 7 dates from within the table. WHERE xdate >= (select min(ts) from (select distinct top 7 xdate as ts from [Table_1] order by xdate desc ) And similarly for Monthly we could...
  13. H

    SQL - Daily/weekly/monthly % Change in Price

    Thanks a ton viktor_k67 for providing the solution. I tried to convert your code according to my table, for doing the calculation for 1 Day % Change "DailyPCT" as follows - Declare @d1 as smalldatetime, @d2 as smalldatetime --get the most recent date set @d1 = (Select top 1 xdate from...
Back
Top