Jump to content

jlz

Community Member
  • Posts

    421
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by jlz

  1. I am not sure if I am pointing to the right hole, but the settlement period is T + 2 days, does that mean that you will get settled in 2 days at that price?
  2. Because you are not trading the index itself, you are trading an ETF that tracks the index. So they run it after hours if they want to.
  3. Early bird catches the worm Being sharp at 5 am must give you an edge in this world Mr Jones PRT is very popular among the crew here so it is worth learning it, even if it is for the sake of understanding some of the posts about it. I can add my 2 pence by looking at the programming manuals, it seems to be stinky Visual Basic so it should not be too difficult. I recommended the API because I develop software for a living, sometimes I forget that not everyone is familiar with coding. I use the API by calling it with c# or python clients and I am allergic to Excel so I didn't experience some of the bugs you mentioned. I don't trade anything manually , all my trades are executed by calling the API so I make sure that I follow a system. The author of the course mentioned that you can get it for free on your first trade in these brokers. I guess we could do a hit and run to get it. "By opening a trading account with PRT-CFD or PRT Interactive Brokers, the training is offered from the first order executed on the account."
  4. @DavyJones After you recommended PRT the other day I got hands on it and I am not too impressed to be honest. I can see the value of using PRT if you already know it but for someone that is starting with it I would just recommend using the charting tools that are coming with IG and TradingView plus the IG API for automated trading. That should cover most of the what is needed to deal. Anyway I ended watching this list of videos on YouTube, just leaving it here in case it is useful for anyone: https://www.youtube.com/watch?v=U6nT3oeSgjw&list=PL_aOI0PWjUsfw6WZ-d3oEGK1NTVRF0WRJ
  5. There is a strong correlation between the major European indices. This paper goes in detail into the subject: https://www.researchgate.net/publication/320772116_Persistent_Correlations_in_Major_Indices_of_the_World_Stock_Markets
  6. Your post reminded me of this video. https://www.youtube.com/watch?v=t-vj9Fb5m6M Totally agreed, there is a lot of nonsense when it comes to finding any useful information about trading. I spend my days back-testing any "marvelous idea" I see out there. So far I was able to prove all of them wrong at some point.
  7. Just wanted to share the data sources that I normally use in case you find them useful. These sources have been mentioned in the forum a few times before and I was wondering if you use them at all or prefer other sources for back-testing. Duskalcopy - https://www.dukascopy.com/swiss/english/marketwatch/historical . Free Yahoo Finance - https://help.yahoo.com/kb/download-historical-data-yahoo-finance-sln2311.html. Free EoData - http://eoddata.com/products/historicaldata.aspx. Some examples for free. CSI Data - https://apps.csidata.com/FactsheetListing.aspx. Some examples for free. IG Streaming API - https://labs.ig.com/streaming-api-guide . Included with your account
  8. Hi, the phone app will have an account active at a time. You can see which account is active by going to the accounts type and selecting it there. You should be able to see all your accounts from the phone app. The app should be labeled on your home screen as "IG Trading" with a red icon and IG symbol in white.
  9. I can see that you have posted in the last hour about 10 messages in random threads. I guess that is coming out of boredom. I am not sure what you are after but I would prefer if you don't make assumptions about me and don't get me involved in your posts. I don't see how I can reply to "THT doesn't like you". I hope you are joking and you are just trying to kill the time, otherwise I can flag you as the forum troll. If that is the case I will not feed you again.
  10. Hi @THT, just wanted to thank you for taking the time to explain your set of rules in great detail. Some of your comments have been said as well by profitable traders in other posts and podcasts that I watched/listened in the past. When you start a post labeling it as "I am going to tell you how to win" it is very difficult for someone to believe that what is coming next is of any value, but reading it carefully I find similarities with many of what I heard before. I'll be reading if you are willing to carry on posting your thoughts. Thank you again.
  11. https://labs.ig.com/glossary Account types : CFD or Spread Bet
  12. Hi , which account are you trying to use? The share dealing account is not supported by the API.
  13. I didn't complain much when I was there (2 years ago), I used it mainly from the north of China, Nanjing area. It will depend on your ISP when you get there. There are helpers to improve your connection if you find it unusable. https://docs.microsoft.com/en-us/windows-server/administration/performance-tuning/role/remote-desktop/session-hosts If you are not able to connect via RDP you can always use a VNC client. That will require installing a VNC server on the VPS. The help -desk team of the VPS will also be able to help if you ask them, I am sure they are used to clients that ask for the same service.
  14. Hi panja, I normally use the "markets" endpoint to search for EPICs. If you are able to connect to the API there is an endpoint listening at: https://api.ig.com/gateway/deal/markets?searchTerm= Where the search term would be a common string that you would use to identify the market. As an example, using FTSE as the search condition the url would become like https://api.ig.com/gateway/deal/markets?searchTerm=FTSE The json response will contain the market EPIC. "markets": [{ "epic": "IX.D.FTSE.DAILY.IP", "instrumentName": "FTSE 100",
  15. Hi these are all the services that will have access to your account. https://status.ig.com Have you tried the mobile app?
  16. Every time I go to China I prepare a VPS (Virtual Private Server) in the UK. You can get one of them for about 10 £ a month or you can leave your computer listening in the UK if your ISP is giving you a static IP. The VPS will act like a physical computer in the UK so your IP will be UK-based. From China you can connect to the VPS via RDP (Remote Desktop Connection) from your laptop. VPS companies are normally giving you a static IP that will not need a domain name , so your RDP client will connect to a pure IP location bypassing the DNS servers within the Chinese firewall. That way I normally forget about firewall restrictions.
  17. I don't use the Excel add-in. I develop in c# using plain html Rest calls, so I was more talking about the json response from the service itself. I replied to your initial message just to say that I was having the same problem, so you don't get mad But looking at the sample code for Excel provided from IG I can see that there is a Subscription group that handles this call: private SubscriptionGroup accountBalanceSubscription; This object is within the IGApiExcelClient class. That subscription connects ultimately to the rest endpoint that throws the error, you will need to change it to use the information coming from the authentication response instead of the accounts response. I can image anyway that this error should be fixed very soon. I am expecting it to go away tomorrow during the day. Can we log this error anywhere that would reach the API team? I saw that you posted the same message on the API forum as well but no one seemed to reply.
  18. One way that I am bypassing this error at the moment is by using the json object that is coming from the AuthenticationResponse. Within the response there is one node that contains the Account Info as well as another node that contains all the accounts that you might have. There you can find almost the same information that you would get from the Accounts endpoint. { "accountType": "SPREADBET", "accountInfo": { "balance": 0, "deposit": 0, "profitLoss": 0, "available": 0 }, "currencyIsoCode": "GBP", "currencySymbol": "£", "currentAccountId": "", "lightstreamerEndpoint": "https://apd.marketdatasystems.com", "accounts": [ { "accountId": "", "accountName": "Spread bet", "preferred": true, "accountType": "SPREADBET" } ], "clientId": "", "timezoneOffset": 1, "hasActiveDemoAccounts": true, "hasActiveLiveAccounts": true, "trailingStopsEnabled": false, "reroutingEnvironment": null, "dealingEnabled": true }
  19. I am getting the same error. I tried the API companion at https://labs.ig.com/sample-apps/api-companion/index.html and it returns the same error you posted as well . I guess we have to wait for it to be fixed, it is a 500 internal server error. We can't do anything.
  20. Hopefully this message reaches someone that can alert the IT team. I am constantly getting a pop up message that is asking me to confirm an ISA account for someone else. I can see that this bug is not only blocking the app to function but is also giving away personal information. Within the pop up message I can see full details of the other person. You guys at IG should have a look at it as soon as possible.
×
×
  • Create New...
us