⏳ Đang cập nhật...

News.iZFx.Trade (GMT+7)

Time Currency Event Actual Forecast Previous
17/08/2026
06:50
JPY GDP (QoQ) (Q2) - 0.5% 0.5%
19/08/2026
13:00
GBP CPI (YoY) (Jul) - 2.5% 2.6%
16:00
EUR CPI (YoY) (Jul) - 2.9% 2.9%
21:30
USD Crude Oil Inventories - - 17.423M
20/08/2026
01:00
USD FOMC Meeting Minutes - - -
19:30
USD Initial Jobless Claims - 210K 209K
19:30
USD Philadelphia Fed Manufacturing Index (Aug) - 24.3 41.4
21/08/2026
20:45
USD S&P Global Manufacturing PMI (Aug) - 54.0 53.9
20:45
USD S&P Global Services PMI (Aug) - 53.9 54.6

JSON API For EA / Bot / App

POST Request (Recommended for EA/Bot)
URL    : https://news.izfx.trade
Method : POST
Header : x-news-source: investing

// JavaScript Example:
fetch('https://news.izfx.trade', {
  method: 'POST',
  headers: { 'x-news-source': 'investing' }
})
.then(response => response.json())
.then(data => console.log(data));
GET Request (with query parameters)
URL: https://news.izfx.trade?source=investing&impact=3&day=week¤cy=all

// JavaScript Example:
fetch('https://news.izfx.trade?source=investing&impact=3&day=week¤cy=all')
  .then(response => response.json())
  .then(data => console.log(data));
Query Parameters (for both GET & POST)
source   : forexfactory | investing
impact   : all | 2 | 3
day      : week | today | tomorrow
currency : all | USD | EUR | GBP | AUD | CAD | CHF | JPY | NZD
refresh  : 1 (bypass cache, fetch fresh data)
Sample Response
[
  {
    "title"    : "Retail Sales (MoM) (May)",
    "currency" : "USD",
    "date"     : "17/06/2026",
    "time"     : "19:30",
    "timestamp": 1750162200,
    "impact"   : 3,
    "actual"   : "0.7%",
    "forecast" : "0.5%",
    "previous" : "0.5%",
    "source"   : "investing"
  }
]