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
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...
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...
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...
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
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...
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:
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...
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...
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...