Search results

  1. yabz

    Free data

    I envisage a site modeled on growstuff.org. Members would collect and curate data on a particular instrument and then offer to swap, or sell, this data with other members. For example you might be keeping a record of the gold price, but require historical data on sugar, so you would swap your...
  2. yabz

    Free data

    As this thread shows it is becoming more and more difficult to find free data. One cannot even count on commercial data providers. This is very worrying for all those using automated trading techniques especially. Even if one finds new sources of data it requires re-writing of software. I would...
  3. yabz

    Yahoo Historical Data - Did they change the URL recently?

    There seems to be a general crackdown on financial data scraping. It used to possible to scrape free historical currency data from oanda until just recently.
  4. yabz

    Opinions please

    It is better to eat whole grains such as rice rather than bread or pasta, but the main thing is to avoid all animal products.
  5. yabz

    Website and Algo Trading

    To code the algo use Python. Use php to connect the algo and website.
  6. yabz

    Missiles Flying!

    The fact that defense stocks soared when Trump won the election suggests the insiders always knew that he would be a war President - more so than Hillary in fact. General Dynamics rose 13% in 3 days....
  7. yabz

    Diet

    If you are eating a healthy diet your shouldn't need blood thinners....Try if possible to give up any drugs or medicines you are taking. They could be messing with your hormonal system.
  8. yabz

    Diet

    Eat any whole foods: potatoes, brown rice, broccoli,cabbage, bananas, oranges, nuts, whatever. Don't eat any animal products and don't eat any processed foods e.g. oil. Make sure you get enough sleep, around 8 hours a night. This can effect your hormones. Cut back on the coffee. Even if you...
  9. yabz

    Diet

    The important thing with a vegan diet is to eat enough. Forget all the rubbish you hear about the dangers of carbohydrates. Humans have low rates of lipogenesis, so however many carbs you eat you will not put on weight. The reason you have fatigue is because you are not eating enough carbs...
  10. yabz

    Some advice & ideas sought....

    If you use Excel you are locking yourself into Windows and Microsoft, which is risky. If you decide switch to Linux for example all your Excel spreadsheets will have to be redone. It is much better to invest your time in developing a system that is durable in the long term. Most of the...
  11. yabz

    Some advice & ideas sought....

    I would avoid Excel (or any proprietary system) at all costs. I have learned this from bitter experience... Python has a lot of powerful scrapping tools. For example, to extract the data in json format use the requests library: req=requests.get(url,headers=headers,params=params)...
  12. yabz

    Looking for seasoned advice on where to begin - API programming

    I am doing something very similar. I am using Oanda's api and Python to develop alerts and to execute the trades as part of an automated trading system. I would suggest Python for a variety of reasons. It fairly easy to learn. It forces you to write well structured programs. It is open...
  13. yabz

    Diet

    I switched to a vegan diet a few years ago, and have found it beneficial in many different ways. I can certainly recommend it. Cancer prevention. I had skin cancer which now seems to have disappeared. Meat is known to be carcinogenic. Weight loss. I'm 62 kg and 187 cm, so for my age I'm in...
  14. yabz

    Python Trading System Deployment

    If you found programming with oanda's API Rest-V20 easy using the available documentation you are a lot smarter than I am. Much of the documentation refers to the Rest API and has not been updated to V20 which adds to the confusion. Its taken me a while to figure it out and I'm happy to pass...
  15. yabz

    Python Trading System Deployment

    I have developed an automated trading system in python using the oanda api which is fairly straightforward. I'm slowly putting together a blog which documents how it works. The advantage of oanda for currency trading is the number of pairs it allows compared to IB. Algorithmic trading works...
  16. yabz

    One pundit who successfully predicted the election

    I successfully predicted the election on Feb 3 of this year. https://www.elitetrader.com/et/threads/republicans-will-win-2016-election.297612 My reasoning was derided but how many experts were as accurate????
  17. yabz

    Europe Is Horrified of Trump, but He’d Fit Right In

    Agreed....Hitler was first and foremost an anti-semite. He thought Jews ruled the world. Trump is a shabbos goy. Opposite end of the spectrum. Godwin's law proved right again.....
  18. yabz

    Republicans will win 2016 election

    The Republicans have won every election when the digital root of the year was 9. 2+0+1+6 = 9 1800 1872 1908 1980 The only exception is 1944 which was a very unusual election for many reasons.
  19. yabz

    Oh no, not another python backtester...

    It is unclear where you get your data from. quandl.py contains only: get data from quandl NOT YET IMPLEMENTED Presumably you are using legacy csv data, but where did this come from and how long are the time frames?
  20. yabz

    writing a script to extract data from stock ticks

    You could do it using php and mysql. Create a cron job to run a php script which would collect the data and store it in the database and then use sql to retrieve the data. This way you are not locked into any propriety system....
Back
Top