Download OpenAPI specification: [Market_Snapshot_API.yaml]
Autochartist Market Snapshots provide a snapshot of trading opportunities currently available. Snapshots are generated three times a day, prior to the opening of the Tokyo, London and New York trading sessions.
Our APIs require the following url parameters on every call:
brokerid – your customer ID on our systems (provided to you)
user – a unique ID of the end-user consuming the information. For server-2-Server integrations this would typically be your company name
accounttype – 0 = LIVE, 1 = DEMO
expiry – Unix timestamp of when this token will expire________token – a token generated by MD5(user|[accounttype]|[expiry][secretkey])
in which secretkey is the secret key provided to you, not to be shared with the end-user
Note the ‘|’ (Pipe) character before and after the AccountType parameter
$expiryDate = time() + (3 * 24 * 60 * 60);
$userid = “myuserid”;
$accountType = “0”;
$secretKey = “secretkey”;
$token = md5(“${userid}|${accountType}|${expiryDate}${secretKey }”);
echo $token;
?>
import hashlib
import time
expiry_date = int(time.time()) + (3 * 24 * 60 * 60)
userid = "myuserid"
account_type = "0"
secret_key = "secretkey"
token = hashlib.md5(f"{userid}|{account_type}|{expiry_date}{secret_key}".encode("utf-8")).hexdigest()
print(token)
Returns the available reports types
A valid request with an authorized MD5 token will be accepted
| broker_id | string Example: broker_id={{broker_id}} Broker ID. |
| token | string Example: token={{token}} |
| user | string Example: user={{user}} Username |
| expire | string Example: expire={{expire}} Expiry of this link as a unix timestamp |
| account_type | string Example: account_type={{account_type}} 0 = LIVE, 1 = DEMO |
[- {
- "report_id": 612,
- "name": "AutochartistFxDemo",
- "last_updated": "2022-08-16T11:12:58.740Z"
}, - {
- "report_id": 440,
- "name": "AutochartistFxDemo NLG",
- "last_updated": "2022-08-16T11:12:44.918Z"
}, - {
- "report_id": 502,
- "name": "AutochartistFxDemoSimple NLG",
- "last_updated": "2022-08-16T11:12:53.486Z"
}
]Returns the available reports.
A valid request with an authorized MD5 token will be accepted
| broker_id | string Example: broker_id={{broker_id}} Broker ID. |
| token | string Example: token={{token}} |
| user | string Example: user={{user}} Username |
| expire | string Example: expire={{expire}} Expiry of this link as a unix timestamp |
| account_type | string Example: account_type={{account_type}} 0 = LIVE, 1 = DEMO |
[- {
- "report_id": 612,
- "report_uid": "62fb7bba924e6300de1bc578",
- "generated": "2022-08-16T11:12:58.740Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62fb7bb5924e6300de1bc545",
- "generated": "2022-08-16T11:12:53.486Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62fb7bad924e6300de1bc51b",
- "generated": "2022-08-16T11:12:44.918Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62fb3595a0f5e25cf5fa79d2",
- "generated": "2022-08-16T06:13:41.713Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62fb3591a0f5e25cf5fa79a3",
- "generated": "2022-08-16T06:13:37.226Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62fb3584a0f5e25cf5fa7977",
- "generated": "2022-08-16T06:13:24.322Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62fac53aa8e97c4c27524a2c",
- "generated": "2022-08-15T22:14:18.677Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62fac535a8e97c4c275249fb",
- "generated": "2022-08-15T22:14:13.445Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62fac529a8e97c4c275249d3",
- "generated": "2022-08-15T22:14:01.101Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62fa2b0dd3e2884e3b9a1f90",
- "generated": "2022-08-15T11:16:28.974Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62fa2af4d3e2884e3b9a1f64",
- "generated": "2022-08-15T11:16:04.315Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62fa2accd3e2884e3b9a1f33",
- "generated": "2022-08-15T11:15:24.693Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62f9e3cecde817381596d1b5",
- "generated": "2022-08-15T06:12:30.260Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62f9e3c6cde817381596d17d",
- "generated": "2022-08-15T06:12:22.735Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62f9e3b6cde817381596d156",
- "generated": "2022-08-15T06:12:06.223Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62f973993dfec14bcd28736e",
- "generated": "2022-08-14T22:13:45.556Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62f973923dfec14bcd287338",
- "generated": "2022-08-14T22:13:38.455Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62f973843dfec14bcd287311",
- "generated": "2022-08-14T22:13:24.202Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62f635fb100a506d044599ee",
- "generated": "2022-08-12T11:14:03.728Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62f635f6100a506d044599c0",
- "generated": "2022-08-12T11:13:58.123Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62f635ea100a506d04459990",
- "generated": "2022-08-12T11:13:46.002Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62f5efd03dda8a0049860c2b",
- "generated": "2022-08-12T06:14:40.330Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62f5efcc3dda8a0049860bfc",
- "generated": "2022-08-12T06:14:36.255Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62f5efc23dda8a0049860bd0",
- "generated": "2022-08-12T06:14:26.488Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62f57f3e453ddc515d557dda",
- "generated": "2022-08-11T22:14:22.562Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62f57f38453ddc515d557da8",
- "generated": "2022-08-11T22:14:16.103Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62f57f30453ddc515d557d81",
- "generated": "2022-08-11T22:14:08.097Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62f4e4934577bb64b8111336",
- "generated": "2022-08-11T11:14:26.877Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62f4e48d4577bb64b8111305",
- "generated": "2022-08-11T11:14:21.201Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62f4e47f4577bb64b81112d0",
- "generated": "2022-08-11T11:14:07.411Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62f49e0e2c22c012a88ca30e",
- "generated": "2022-08-11T06:13:34.623Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62f49e092c22c012a88ca2dc",
- "generated": "2022-08-11T06:13:28.660Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62f49dfe2c22c012a88ca2b0",
- "generated": "2022-08-11T06:13:18.452Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62f42db90e94d6793a6e2b7e",
- "generated": "2022-08-10T22:14:17.319Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62f42db40e94d6793a6e2b47",
- "generated": "2022-08-10T22:14:11.808Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62f42da80e94d6793a6e2b20",
- "generated": "2022-08-10T22:13:59.882Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62f392c78a8f597e22553bd8",
- "generated": "2022-08-10T11:13:11.607Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62f392c28a8f597e22553ba9",
- "generated": "2022-08-10T11:13:06.253Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62f392b88a8f597e22553b78",
- "generated": "2022-08-10T11:12:56.094Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62f34c838742277ede34942c",
- "generated": "2022-08-10T06:13:23.767Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62f34c7e8742277ede3493fc",
- "generated": "2022-08-10T06:13:18.430Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62f34c718742277ede3493d1",
- "generated": "2022-08-10T06:13:05.762Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62f2dc6618d4671bad76917d",
- "generated": "2022-08-09T22:15:02.096Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62f2dc6018d4671bad76914f",
- "generated": "2022-08-09T22:14:56.140Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62f2dc5218d4671bad769122",
- "generated": "2022-08-09T22:14:41.852Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62f2414e6b6bf16b8a619c69",
- "generated": "2022-08-09T11:13:18.026Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62f241466b6bf16b8a619c34",
- "generated": "2022-08-09T11:13:10.683Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62f241386b6bf16b8a619c06",
- "generated": "2022-08-09T11:12:56.796Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62f1fb225722f7567e86c45d",
- "generated": "2022-08-09T06:13:54.238Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62f1fb1d5722f7567e86c42c",
- "generated": "2022-08-09T06:13:49.316Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62f1fb105722f7567e86c404",
- "generated": "2022-08-09T06:13:36.082Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62f18ad63c54d66b82d953c0",
- "generated": "2022-08-08T22:14:46.415Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62f18ad03c54d66b82d95389",
- "generated": "2022-08-08T22:14:40.296Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62f18ac73c54d66b82d9535f",
- "generated": "2022-08-08T22:14:31.522Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62f0f046256ecf52ecc3df48",
- "generated": "2022-08-08T11:15:18.644Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62f0f040256ecf52ecc3df16",
- "generated": "2022-08-08T11:15:12.762Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62f0f037256ecf52ecc3dee6",
- "generated": "2022-08-08T11:15:02.983Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62f0a9348e5fda2d4bcaa955",
- "generated": "2022-08-08T06:12:03.875Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62f0a92e8e5fda2d4bcaa921",
- "generated": "2022-08-08T06:11:57.987Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62f0a9218e5fda2d4bcaa8f4",
- "generated": "2022-08-08T06:11:45.783Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62f03935f2d71957db2f1c5e",
- "generated": "2022-08-07T22:14:13.801Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62f03930f2d71957db2f1c28",
- "generated": "2022-08-07T22:14:08.189Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62f03926f2d71957db2f1bff",
- "generated": "2022-08-07T22:13:57.958Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62ecfb4bc22bf52f8889aa11",
- "generated": "2022-08-05T11:13:15.731Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62ecfb45c22bf52f8889a9e0",
- "generated": "2022-08-05T11:13:09.649Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62ecfb3cc22bf52f8889a9b0",
- "generated": "2022-08-05T11:13:00.516Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62ecb5828b6d0f5768cb0fac",
- "generated": "2022-08-05T06:15:30.269Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62ecb5768b6d0f5768cb0f77",
- "generated": "2022-08-05T06:15:18.588Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62ecb5678b6d0f5768cb0f4e",
- "generated": "2022-08-05T06:15:03.815Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62ec44d3d3cb0b00704fb3b3",
- "generated": "2022-08-04T22:14:43.711Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62ec44cdd3cb0b00704fb37f",
- "generated": "2022-08-04T22:14:37.882Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62ec44c0d3cb0b00704fb358",
- "generated": "2022-08-04T22:14:24.376Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62ebaa5d1004c5406ca9bb9d",
- "generated": "2022-08-04T11:15:41.111Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62ebaa521004c5406ca9bb6d",
- "generated": "2022-08-04T11:15:30.401Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62ebaa3f1004c5406ca9bb3c",
- "generated": "2022-08-04T11:15:11.608Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62eb63b44f8b683ad4b66d03",
- "generated": "2022-08-04T06:14:12.672Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62eb63ae4f8b683ad4b66ccd",
- "generated": "2022-08-04T06:14:06.469Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62eb639e4f8b683ad4b66ca5",
- "generated": "2022-08-04T06:13:50.210Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62eaf353ad17911cc4bcd72f",
- "generated": "2022-08-03T22:14:43.701Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62eaf34dad17911cc4bcd6fc",
- "generated": "2022-08-03T22:14:37.535Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62eaf33ead17911cc4bcd6d0",
- "generated": "2022-08-03T22:14:21.975Z",
- "session": "AS"
}, - {
- "report_id": 612,
- "report_uid": "62ea5859bb1338388440c4e9",
- "generated": "2022-08-03T11:13:28.881Z",
- "session": "US"
}, - {
- "report_id": 502,
- "report_uid": "62ea5852bb1338388440c4b1",
- "generated": "2022-08-03T11:13:22.225Z",
- "session": "US"
}, - {
- "report_id": 440,
- "report_uid": "62ea5841bb1338388440c482",
- "generated": "2022-08-03T11:13:05.779Z",
- "session": "US"
}, - {
- "report_id": 612,
- "report_uid": "62ea1223083e172589872cc7",
- "generated": "2022-08-03T06:13:55.152Z",
- "session": "EU"
}, - {
- "report_id": 502,
- "report_uid": "62ea121d083e172589872c94",
- "generated": "2022-08-03T06:13:49.757Z",
- "session": "EU"
}, - {
- "report_id": 440,
- "report_uid": "62ea1211083e172589872c67",
- "generated": "2022-08-03T06:13:37.220Z",
- "session": "EU"
}, - {
- "report_id": 612,
- "report_uid": "62e9a1ddadaeda18a88ee553",
- "generated": "2022-08-02T22:14:52.977Z",
- "session": "AS"
}, - {
- "report_id": 502,
- "report_uid": "62e9a1d6adaeda18a88ee51f",
- "generated": "2022-08-02T22:14:46.528Z",
- "session": "AS"
}, - {
- "report_id": 440,
- "report_uid": "62e9a1caadaeda18a88ee4f3",
- "generated": "2022-08-02T22:14:34.436Z",
- "session": "AS"
}
]Returns the content of a market snapshot
A valid request with an authorized MD5 token will be accepted
| reportuid required | string |
| broker_id | string Example: broker_id={{broker_id}} Broker ID. |
| token | string Example: token={{token}} |
| user | string Example: user={{user}} Username |
| expire | string Example: expire={{expire}} Expiry of this link as a unix timestamp |
| account_type | string Example: account_type={{account_type}} 0 = LIVE, 1 = DEMO |
| report_id | string Example: report_id={{report_id}} the report type id (See "GET Available Report Types") |
| reportuid | string Example: reportuid={{reportuid}} The reportuid to retrieve (See "GET Available Reports"). Use "latest" to get the latest instance of the specified report type |
| include | string Example: include=messages (optional) Inlcude messages |
| include | string Example: include=pattern_detail (optional) Include pattern details. This can be called separatly See "GET pattern details" |
| locale | string Example: locale={{locale}} Locale language tag. This parameter to be used for one locale |
{- "report_id": 612,
- "report_uid": "62fb7bba924e6300de1bc578",
- "generated": "2022-08-16T11:12:58.740Z",
- "session": "US",
- "messages": {
- "name": "AutochartistForex",
- "heading": "Forex Report",
- "session": "US Session",
- "report_description": "Market Reports are generated 3 times per day. Each before the open of Tokyo, London and New York. These reports provide you with a snapshot of the technical outlook of the markets before the opening of the major financial centres.",
- "indicator_description": "Supporting RSI and Moving Averages are 34 candles",
- "date": "16-Aug-2022 11:12 UTC"
}, - "symbol_reports": [
- {
- "type": "CP",
- "result_uid": 600440291809491100,
- "symbol_report_id": "CP_600440291809491101",
- "direction": -1,
- "rsi_direction": 1,
- "ma_direction": -1,
- "symbol": "EURUSD",
- "symbol_display": "EUR/USD",
- "interval": 60,
- "forecast_length": 609,
- "forecast_time": "2022-08-16T20:39:00.000Z",
- "pattern_end_time": "2022-08-16T07:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "RESISTANCE",
- "label": "A",
- "level": 1.0169,
- "date_time": "2022-08-16T06:00:00.000Z"
}, - {
- "type": "TARGET",
- "label": "B",
- "level": 1.0085282142857144,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "STOP",
- "label": "C",
- "level": 1.0169,
- "date_time": "2022-08-16T06:00:00.000Z"
}, - {
- "type": "ENTRY",
- "label": "D",
- "level": 1.01341,
- "date_time": "2022-08-16T07:00:00.000Z"
}
], - "messages": {
- "result_uid": 600440291809491100,
- "symbol_report_id": "CP_600440291809491101",
- "symbol_name": "EUR/USD",
- "analysis": "Channel Down identified at 16-Aug-08:00. This pattern is still in the process of forming. Possible bearish price movement towards the support 1.0085 within the next 10 hours.",
- "data_interval": "1 hour",
- "resistance_level": {
- "level": "1.0169",
- "label": "A",
- "description": "Last TP of Channel Down"
}, - "target_level": "1.0085",
- "target_period": "10 hours",
- "chart_start_date": "11-Aug-01:00",
- "chart_end_date": "16-Aug-11:00",
- "type": "CP",
- "supporting_indicator": "Supported by Downward sloping Moving Average",
- "pattern_length": "41 Candles",
- "identified": "16-Aug-08:00",
- "pattern_name": "Channel Down"
}
}, - {
- "type": "PRF",
- "result_uid": 525055079704667100,
- "symbol_report_id": "PRF_525055079704667100",
- "direction": 1,
- "rsi_direction": 0,
- "ma_direction": 1,
- "symbol": "USDJPY",
- "symbol_display": "USD/JPY",
- "interval": 60,
- "forecast_length": 240,
- "forecast_time": "2022-08-16T14:00:00.000Z",
- "pattern_end_time": "2022-08-16T10:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "RESISTANCE",
- "label": "A",
- "level": 134.55818914787952,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "SUPPORT",
- "label": "B",
- "level": 133.6498108521205,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "ENTRY",
- "label": "C",
- "level": 134.104,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "TARGET",
- "label": "A",
- "level": 134.55818914787952,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "STOP",
- "label": "B",
- "level": 133.6498108521205,
- "date_time": "2022-08-16T10:00:00.000Z"
}
], - "messages": {
- "result_uid": 525055079704667100,
- "symbol_report_id": "PRF_525055079704667100",
- "symbol_name": "USD/JPY",
- "analysis": "Possible bullish price movement towards the resistance 134.5582 within the next 4 hours.",
- "data_interval": "1 hour",
- "support_level": {
- "level": "133.6498",
- "label": "B",
- "description": "4 hours low volatility level"
}, - "resistance_level": {
- "level": "134.5582",
- "label": "A",
- "description": "4 hours high volatility level"
}, - "target_level": "134.5582",
- "target_period": "4 hours",
- "chart_start_date": "12-Aug-01:00",
- "chart_end_date": "16-Aug-11:00",
- "type": "PRF",
- "supporting_indicator": "Supported by Upward sloping Moving Average",
- "pattern_length": "24 Candles",
- "identified": "16-Aug-11:00"
}
}, - {
- "type": "CP",
- "result_uid": 600440764593723100,
- "symbol_report_id": "CP_600440764593723101",
- "direction": -1,
- "rsi_direction": 1,
- "ma_direction": -1,
- "symbol": "GBPUSD",
- "symbol_display": "GBP/USD",
- "interval": 60,
- "forecast_length": 1488,
- "forecast_time": "2022-08-17T11:18:00.000Z",
- "pattern_end_time": "2022-08-16T09:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "RESISTANCE",
- "label": "A",
- "level": 1.20559,
- "date_time": "2022-08-16T08:00:00.000Z"
}, - {
- "type": "TARGET",
- "label": "B",
- "level": 1.1945220454545455,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "STOP",
- "label": "C",
- "level": 1.20559,
- "date_time": "2022-08-16T08:00:00.000Z"
}, - {
- "type": "ENTRY",
- "label": "D",
- "level": 1.20209,
- "date_time": "2022-08-16T09:00:00.000Z"
}
], - "messages": {
- "result_uid": 600440764593723100,
- "symbol_report_id": "CP_600440764593723101",
- "symbol_name": "GBP/USD",
- "analysis": "Channel Down identified at 16-Aug-10:00. This pattern is still in the process of forming. Possible bearish price movement towards the support 1.1945 within the next day.",
- "data_interval": "1 hour",
- "resistance_level": {
- "level": "1.2056",
- "label": "A",
- "description": "Last TP of Channel Down"
}, - "target_level": "1.1945",
- "target_period": "day",
- "chart_start_date": "09-Aug-10:00",
- "chart_end_date": "16-Aug-11:00",
- "type": "CP",
- "supporting_indicator": "Supported by Downward sloping Moving Average",
- "pattern_length": "79 Candles",
- "identified": "16-Aug-10:00",
- "pattern_name": "Channel Down"
}
}, - {
- "type": "CP",
- "result_uid": 600437468098621000,
- "symbol_report_id": "CP_600437468098621101",
- "direction": 1,
- "rsi_direction": 0,
- "ma_direction": 1,
- "symbol": "USDCHF",
- "symbol_display": "USD/CHF",
- "interval": 240,
- "forecast_length": 1687,
- "forecast_time": "2022-08-17T14:37:00.000Z",
- "pattern_end_time": "2022-08-15T16:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "SUPPORT",
- "label": "A",
- "level": 0.94189,
- "date_time": "2022-08-15T12:00:00.000Z"
}, - {
- "type": "TARGET",
- "label": "B",
- "level": 0.9531442309841941,
- "date_time": "2022-08-16T08:00:00.000Z"
}, - {
- "type": "STOP",
- "label": "C",
- "level": 0.94189,
- "date_time": "2022-08-15T12:00:00.000Z"
}, - {
- "type": "ENTRY",
- "label": "D",
- "level": 0.9457324242424243,
- "date_time": "2022-08-15T16:00:00.000Z"
}
], - "messages": {
- "result_uid": 600437468098621000,
- "symbol_report_id": "CP_600437468098621101",
- "symbol_name": "USD/CHF",
- "analysis": "Triangle has broken through the resistance line at 15-Aug-20:00. Possible bullish price movement forecast for the next day towards 0.9531.",
- "data_interval": "4 hour",
- "support_level": {
- "level": "0.9419",
- "label": "A",
- "description": "Last TP of Triangle"
}, - "target_level": "0.9531",
- "target_period": "day",
- "chart_start_date": "29-Jul-08:00",
- "chart_end_date": "16-Aug-12:00",
- "type": "CP",
- "supporting_indicator": "Supported by Upward sloping Moving Average",
- "pattern_length": "35 Candles",
- "identified": "15-Aug-20:00",
- "pattern_name": "Triangle"
}
}, - {
- "type": "CP",
- "result_uid": 600441013253068200,
- "symbol_report_id": "CP_600441013253068101",
- "direction": 1,
- "rsi_direction": 0,
- "ma_direction": 1,
- "symbol": "USDCAD",
- "symbol_display": "USD/CAD",
- "interval": 60,
- "forecast_length": 1228,
- "forecast_time": "2022-08-17T06:58:00.000Z",
- "pattern_end_time": "2022-08-16T10:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "SUPPORT",
- "label": "A",
- "level": 1.28901,
- "date_time": "2022-08-16T09:00:00.000Z"
}, - {
- "type": "TARGET",
- "label": "B",
- "level": 1.3078815243902437,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "STOP",
- "label": "C",
- "level": 1.28901,
- "date_time": "2022-08-16T09:00:00.000Z"
}, - {
- "type": "ENTRY",
- "label": "D",
- "level": 1.29187,
- "date_time": "2022-08-16T10:00:00.000Z"
}
], - "messages": {
- "result_uid": 600441013253068200,
- "symbol_report_id": "CP_600441013253068101",
- "symbol_name": "USD/CAD",
- "analysis": "Channel Up identified at 16-Aug-11:00. This pattern is still in the process of forming. Possible bullish price movement towards the resistance 1.3079 within the next 20 hours.",
- "data_interval": "1 hour",
- "support_level": {
- "level": "1.2890",
- "label": "A",
- "description": "Last TP of Channel Up"
}, - "target_level": "1.3079",
- "target_period": "20 hours",
- "chart_start_date": "10-Aug-04:00",
- "chart_end_date": "16-Aug-11:00",
- "type": "CP",
- "supporting_indicator": "Supported by Upward sloping Moving Average",
- "pattern_length": "63 Candles",
- "identified": "16-Aug-11:00",
- "pattern_name": "Channel Up"
}
}, - {
- "type": "BM",
- "result_uid": 600432757514157000,
- "symbol_report_id": "BM_600432757514157106",
- "direction": 0,
- "rsi_direction": 0,
- "ma_direction": 0,
- "symbol": "NZDUSD",
- "symbol_display": "NZD/USD",
- "interval": 1440,
- "forecast_length": 0,
- "forecast_time": "2022-08-14T00:00:00.000Z",
- "pattern_end_time": "2022-08-14T00:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "ENTRY",
- "label": "A",
- "level": 0.62963,
- "date_time": "2022-08-05T00:00:00.000Z"
}
], - "messages": {
- "result_uid": 600432757514157000,
- "symbol_report_id": "BM_600432757514157106",
- "symbol_name": "NZD/USD",
- "analysis": "NZD/USD experienced a 3.51% bullish movement in the last 10 days.",
- "data_interval": "Daily",
- "chart_start_date": "14-Jul-00:00",
- "chart_end_date": "16-Aug-00:00",
- "type": "BM",
- "pattern_length": "7 Candles",
- "identified": "15-Aug-00:00",
- "pattern_name": "Big Movement"
}
}, - {
- "type": "CP",
- "result_uid": 600440526851868200,
- "symbol_report_id": "CP_600440526851868101",
- "direction": 1,
- "rsi_direction": 0,
- "ma_direction": -1,
- "symbol": "EURCHF",
- "symbol_display": "EUR/CHF",
- "interval": 60,
- "forecast_length": 2787,
- "forecast_time": "2022-08-18T08:57:00.000Z",
- "pattern_end_time": "2022-08-16T08:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "SUPPORT",
- "label": "A",
- "level": 0.96043,
- "date_time": "2022-08-16T00:00:00.000Z"
}, - {
- "type": "TARGET",
- "label": "B",
- "level": 0.9658223711340206,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "STOP",
- "label": "C",
- "level": 0.96043,
- "date_time": "2022-08-16T00:00:00.000Z"
}, - {
- "type": "ENTRY",
- "label": "D",
- "level": 0.96291,
- "date_time": "2022-08-16T08:00:00.000Z"
}
], - "messages": {
- "result_uid": 600440526851868200,
- "symbol_report_id": "CP_600440526851868101",
- "symbol_name": "EUR/CHF",
- "analysis": "Channel Down identified at 16-Aug-09:00. This pattern is still in the process of forming. Possible bullish price movement towards the resistance 0.9658 within the next 2 days.",
- "data_interval": "1 hour",
- "support_level": {
- "level": "0.9604",
- "label": "A",
- "description": "Last TP of Channel Down"
}, - "target_level": "0.9658",
- "target_period": "2 days",
- "chart_start_date": "04-Aug-06:00",
- "chart_end_date": "16-Aug-11:00",
- "type": "CP",
- "pattern_length": "147 Candles",
- "identified": "16-Aug-09:00",
- "pattern_name": "Channel Down"
}
}, - {
- "type": "CP",
- "result_uid": 600440301990209200,
- "symbol_report_id": "CP_600440301990209101",
- "direction": -1,
- "rsi_direction": 1,
- "ma_direction": -1,
- "symbol": "XAUUSD",
- "symbol_display": "XAU/USD",
- "interval": 60,
- "forecast_length": 988,
- "forecast_time": "2022-08-17T02:58:00.000Z",
- "pattern_end_time": "2022-08-16T07:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "RESISTANCE",
- "label": "A",
- "level": 1782.07,
- "date_time": "2022-08-16T06:00:00.000Z"
}, - {
- "type": "TARGET",
- "label": "B",
- "level": 1762.4049999999997,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "STOP",
- "label": "C",
- "level": 1782.07,
- "date_time": "2022-08-16T06:00:00.000Z"
}, - {
- "type": "ENTRY",
- "label": "D",
- "level": 1776.01,
- "date_time": "2022-08-16T07:00:00.000Z"
}
], - "messages": {
- "result_uid": 600440301990209200,
- "symbol_report_id": "CP_600440301990209101",
- "symbol_name": "XAU/USD",
- "analysis": "Falling Wedge identified at 16-Aug-08:00. This pattern is still in the process of forming. Possible bearish price movement towards the support 1762.4050 within the next 16 hours.",
- "data_interval": "1 hour",
- "resistance_level": {
- "level": "1782.0700",
- "label": "A",
- "description": "Last TP of Falling Wedge"
}, - "target_level": "1762.4050",
- "target_period": "16 hours",
- "chart_start_date": "10-Aug-04:00",
- "chart_end_date": "16-Aug-11:00",
- "type": "CP",
- "supporting_indicator": "Supported by Downward sloping Moving Average",
- "pattern_length": "60 Candles",
- "identified": "16-Aug-08:00",
- "pattern_name": "Falling Wedge"
}
}, - {
- "type": "CP",
- "result_uid": 600440058406441100,
- "symbol_report_id": "CP_600440058406441101",
- "direction": -1,
- "rsi_direction": 1,
- "ma_direction": -1,
- "symbol": "XAGUSD",
- "symbol_display": "XAG/USD",
- "interval": 60,
- "forecast_length": 988,
- "forecast_time": "2022-08-17T02:58:00.000Z",
- "pattern_end_time": "2022-08-16T06:00:00.000Z",
- "favourite": false,
- "levels": [
- {
- "type": "RESISTANCE",
- "label": "A",
- "level": 20.251,
- "date_time": "2022-08-16T05:00:00.000Z"
}, - {
- "type": "TARGET",
- "label": "B",
- "level": 19.979934782608698,
- "date_time": "2022-08-16T10:00:00.000Z"
}, - {
- "type": "STOP",
- "label": "C",
- "level": 20.251,
- "date_time": "2022-08-16T05:00:00.000Z"
}, - {
- "type": "ENTRY",
- "label": "D",
- "level": 20.167,
- "date_time": "2022-08-16T06:00:00.000Z"
}
], - "messages": {
- "result_uid": 600440058406441100,
- "symbol_report_id": "CP_600440058406441101",
- "symbol_name": "XAG/USD",
- "analysis": "Falling Wedge identified at 16-Aug-07:00. This pattern is still in the process of forming. Possible bearish price movement towards the support 19.9799 within the next 16 hours.",
- "data_interval": "1 hour",
- "resistance_level": {
- "level": "20.2510",
- "label": "A",
- "description": "Last TP of Falling Wedge"
}, - "target_level": "19.9799",
- "target_period": "16 hours",
- "chart_start_date": "10-Aug-00:00",
- "chart_end_date": "16-Aug-11:00",
- "type": "CP",
- "supporting_indicator": "Supported by Downward sloping Moving Average",
- "pattern_length": "63 Candles",
- "identified": "16-Aug-07:00",
- "pattern_name": "Falling Wedge"
}
}
]
}Returns an image for a particular result in the snapshot
A valid request with an authorized MD5 token will be accepted
| reportuid required | string |
| symbol_report_id required | string |
| imageformat required | string |
| broker_id | string Example: broker_id={{broker_id}} Broker ID. |
| token | string Example: token={{token}} |
| user | string Example: user={{user}} Username |
| expire | string Example: expire={{expire}} Expiry of this link as a unix timestamp |
| account_type | string Example: account_type={{account_type}} 0 = LIVE, 1 = DEMO |
| report_id | string Example: report_id={{report_id}} the report type id (See "GET Available Report Types") |
| reportuid | string Example: reportuid={{reportuid}} The reportuid to retrieve (See "GET Available Reports"). Use "latest" to get the latest instance of the specified report type |
| symbol_report_id | string Example: symbol_report_id={{symbol_report_id}} symbol_report_id returned by one of the results returned by the GET Snapshot call |
| w | string Example: w={{width}} width of image in pixels |
| h | string Example: h={{height}} height of image in pixels |
| small | boolean Example: small=true Optional: returns an image that is zoomed into the last part of the opportunity |
| imageformat | string Example: imageformat={{imageformat}} either png or svg |
Returns the pattern details for the specified result from the GET snapshot call
Below are the return fields. There are fields that are common to all analysis types, and some fields that are specific to each analysis type.
A valid request with an authorized MD5 token will be accepted
| reportuid required | string |
| symbol_report_id required | string |
| broker_id | string Example: broker_id={{broker_id}} Broker ID. |
| token | string Example: token={{token}} |
| user | string Example: user={{user}} Username |
| expire | string Example: expire={{expire}} Expiry of this link as a unix timestamp |
| account_type | string Example: account_type={{account_type}} 0 = LIVE, 1 = DEMO |
| report_id | string Example: report_id={{report_id}} the report type id (See "GET Available Report Types") |
| reportuid | string Example: reportuid={{reportuid}} The reportuid to retrieve (See "GET Available Reports"). Use "latest" to get the latest instance of the specified report type |
| symbol_report_id | string Example: symbol_report_id={{symbol_report_id}} symbol_report_id returned by one of the results returned by the GET Snapshot call |
{- "new": false,
- "data": {
- "bandwidth": 5,
- "atBarIdentified": "2021-08-13T16:00:00.000Z",
- "x0": "2021-08-11T16:00:00.000Z",
- "x1": "2021-08-10T08:00:00.000Z",
- "x2": "2021-08-09T08:00:00.000Z",
- "x3": "2021-07-28T04:00:00.000Z",
- "x4": "2021-07-15T08:00:00.000Z",
- "x5": "2021-07-13T00:00:00.000Z",
- "x6": "2021-07-12T12:00:00.000Z",
- "x7": "1970-01-01T00:00:00.000Z",
- "x8": "1970-01-01T00:00:00.000Z",
- "x9": "1970-01-01T00:00:00.000Z",
- "approachingTime": "2021-08-13T16:00:00.000Z",
- "patternPrice": 1.3904999494552612,
- "approachingRegion": 0.0049850000000000345,
- "errorMargin": 0.001963499999999996,
- "qtyTP": 7,
- "priceE": 1.3924634456634521,
- "barsE": 546,
- "temporaryPattern": false,
- "predictionPriceFrom": 0,
- "predictionPriceTo": 0,
- "predictionTimeFrom": "1900-01-01T05:00:00.000Z",
- "predictionTimeBars": 0,
- "furthestPrice": 1.3836207,
- "atPriceIdentified": 1.38698,
- "symbol": "GBPUSD",
- "granularity": 240,
- "direction": 1,
- "length": 149,
- "complete": false,
- "exchange": "FOREX",
- "age": 0,
- "relevant": 1,
- "pattern_id": 1,
- "symbol_id": 354918,
- "long_name": "GBPUSD",
- "pattern_end_time": "2021-08-13T16:00:00.000Z",
- "pattern_start_time": "2021-07-12T12:00:00.000Z",
- "pattern_name": "Resistance",
- "result_uid": 731820533,
- "is_new": false,
- "prediction_pip_profit": 0,
- "use_relevance_logic": false,
- "forecast_minutes": 8940
}, - "links": [
]
}Returns the content of a market snapshot in HTML form that is pre-formatted for email.
A valid request with an authorized MD5 token will be accepted
| reportuid required | string |
| broker_id | string Example: broker_id={{broker_id}} Broker ID. |
| token | string Example: token={{token}} |
| user | string Example: user={{user}} Username |
| expire | string Example: expire={{expire}} Expiry of this link as a unix timestamp |
| account_type | string Example: account_type={{account_type}} 0 = LIVE, 1 = DEMO |
| report_id | string Example: report_id={{report_id}} the report type id (See "GET Available Report Types") |
| reportuid | string Example: reportuid={{reportuid}} The reportuid to retrieve (See "GET Available Reports"). Use "latest" to get the latest instance of the specified report type |
| locale | string Example: locale={{locale}} Locale language tag. This parameter to be used for one locale |
"<html>\n <head>\n <META http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\">\n <meta content=\"telephone=no\" name=\"format-detection\">\n <meta name=\"viewport\" content=\"width=device-width; initial-scale=1.0; maximum-scale=1.0;\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=9; IE=8; IE=7; IE=EDGE\"/>\n <link href=\"https://fonts.googleapis.com/css2?family=Rubik:wght@400;700;900&display=swap\" rel=\"stylesheet\">\n <link href='https://fonts.googleapis.com/css?family=Mulish' rel='stylesheet'>\n <style>@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;700;900&display=swap');</style>\n <style>@import url('https://fonts.googleapis.com/css?family=Mulish');</style>\n <title>AutochartistForex (US Session)</title>\n <style>\na {\ncolor: #0B5B9C;\n}\n</style>\n </head>\n <body marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\" leftmargin=\"0\" width=\"100%\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#F3F2F5\" class=\"table0\"\ndir=\"LTR\">\n <tbody>\n <tr>\n <td align=\"center\" width=\"100%\" style=\"text-align: center;\">\n <!--[if !mso 9]>\n <!-->\n <div style=\"display:none;font-size:1px;color:#F3F2F5;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;\">\nEUR/USD: EUR/USD is approaching the resistance line of a Resistance. It has touched this line numerous times in the last 12 days. If it tests this line again, it could do so in the next 2 days. Supported by Upward sloping Moving Average\n</div>\n <!--\n <![endif]-->\n <div style=\"margin:0 auto; width:624px;\">\n <table width=\"100%\" style=\"width: 100%\" cellspacing=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"padding: 5px 10px; text-align: center; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\"\nalign=\"center\">\nThis message contains images. If you do not see the images, please ensure that you enable images to be downloaded.\n</td>\n </tr>\n </tbody>\n </table>\n </div>\n </td>\n </tr>\n <tr>\n <td align=\"center\" width=\"100%\">\n <div style=\"margin:0 auto; width:624px;\" id=\"olook\">\n <table style=\"width: 600px;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td style=\"padding: 5px 10px\" bgcolor=\"#FFFFFF\">\n <table width=\"100%\">\n <tr>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 22px; font-weight: 900; color: #0B5B9C;\">\nForex Report\n</td>\n <td style=\"text-align: right\">\n <img src=\"https://brokerslogos.autochartist.com/fbfc92a9-a4f3-4b52-af5b-e13af55bbb41.png\" alt=\"\"/>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td style=\"padding: 5px 10px\" bgcolor=\"#FFFFFF\">\n <table width=\"600px\" style=\"table-layout: fixed; width: 600px;\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td width=\"250px\" style=\"width: 250px; min-width: 250px; font-family: 'Open Sans', sans-serif; font-size: 18px; font-weight: 900; color: #0B5B9C;\">Market Summary</td>\n <td width=\"5px\" style=\"min-width: 5px;\"> </td>\n <td width=\"345px\" style=\"min-width: 250px; font-family: 'Open Sans', sans-serif; font-size: 18px; font-weight: 900; color: #0B5B9C;\">\nNotifications </td>\n </tr>\n <tr>\n <td>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 900; color: #0B5B9C;\">Upcoming High Impact Economic Releases</span>\n </td>\n <td> </td>\n <td>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 900; color: #0B5B9C;\">Daily Notification</span>\n </td>\n </tr>\n <tr>\n <td style=\"vertical-align: top;\">\n <table style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr style=\"\">\n <td style=\"padding: 0 2px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/events/flags/DE.gif\" >\n </td>\n <td style=\"padding: 0 2px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\n <strong>GfK Consumer Confidence</strong>\n <span\nstyle=\"white-space: nowrap;\">23-Feb-02:00</span>\n </td>\n <td style=\"padding: 0 2px; white-space: nowrap;\">\n <a href=\"http://messaging.autochartist.com/mailer/ics/event/290725.ics?locale=en_GB\"\nstyle=\"text-decoration: none;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/outical.png?color=%23696A6C\" >\n </a> \n <a href=\"https://www.google.com/calendar/render?action=TEMPLATE&ctz=UTC&dates=20220223T070000/20220223T070000&text=DE%20-%20GfK%20Consumer%20Confidence\"\nstyle=\"text-decoration: none;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/gcal.png?color=%230B5B9C\" >\n </a>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n <td> </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C; vertical-align: top;\">\n <div style=\"background-color: #E9E9EB; border: none !important; width:300px;>\n <div id=\">\n <div class=\"container\">\n <div class=\"blogarchive single fullwidth\">\n <div>\n <div class=\"post-listing\">\n <div class=\"ten columns\" style=\"margin-right: 0px; float: right;\">\n <div class=\"metas_container\" style=\"width: 100%; left: -1px;\">\n <div class=\"metas\"></div>\n </div>\n </div>\n <div>\n <p>We have awesome content to share with you. Please join us on Social Media to keep up to date:</p>\n <p>\n <a href=\"https://www.youtube.com/channel/UCgtzWLvln0UHHQmUORDusYA?sub_confirmation=1\">Click Here</a> to Subscribe to our YouTube channel\n </p>\n <p>\n <a href=\"https://www.facebook.com/Autochartist/\">Click Here</a> to Like us on Facebook\n </p>\n <p>\n <a href=\"https://twitter.com/Autochartist\">Click Here</a> to Follow us on Twitter\n </p>\n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n </td>\n </tr>\n <tr>\n <td>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 900; color: #0B5B9C;\">Market Movements</span>\n </td>\n <td></td>\n <td>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 900; color: #0B5B9C;\">Report Time: 22-Feb-2022 06:13 EST</span>\n </td>\n </tr>\n <tr>\n <td style=\"vertical-align: top;\">\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td style=\"padding-left: 5px; padding-bottom: 3px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C; font-weight: 900\">\nSymbol </td>\n <td style=\"padding-left: 5px; padding-bottom: 3px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C; font-weight: 900\">\nLatest Price </td>\n <td style=\"padding-left: 5px; padding-bottom: 3px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C; font-weight: 900\">\nDaily Change </td>\n </tr>\n <tr style=\"background-color: #F3F2F5;\">\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">EURUSD</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">1.135</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/up.png?color=%23008000\" >\n0.45%\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">USDJPY</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">114.93</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/up.png?color=%23008000\" >\n0.21%\n </td>\n </tr>\n <tr style=\"background-color: #F3F2F5;\">\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">GBPUSD</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">1.357</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/down.png?color=%230B5B9C\" >\n0.12%\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">USDCHF</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">0.919</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/up.png?color=%23008000\" >\n0.28%\n </td>\n </tr>\n <tr style=\"background-color: #F3F2F5;\">\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">FTSE</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">7,415.5</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/up.png?color=%23008000\" >\n0.71%\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n <td> </td>\n <td style=\"vertical-align: top; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\nMarket Reports are generated 3 times per day. Each before the open of Tokyo, London and New York. These reports provide you with a snapshot of the technical outlook of the markets before the opening of the major financial centres.\n <br>\n <br>\nMarket movements show change in price from the same report 24 hours earlier.\n <br>\nSupporting RSI and Moving Averages are 34 candles\n <br>\nTP: Last Turning Point - used to identify Support (SL) and Resistance (RL) Levels\n\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td style=\"padding: 5px 10px\" bgcolor=\"#FFFFFF\">\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"min-width:550px;width: 100%; border-collapse: collapse; table-layout: fixed;\">\n <tbody>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">EUR/USD</strong>\n <br>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">09-Feb-15:00 -> 22-Feb-06:00</span>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">Target Level: 1.1391</strong>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/KL_887487818.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 2 days\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">30 Minutes</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Resistance</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">346 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">22-Feb-06:00</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nEUR/USD is approaching the resistance line of a Resistance. It has touched this line numerous times in the last 12 days. If it tests this line again, it could do so in the next 2 days.\n\n <br>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Supported by Upward sloping Moving Average</strong>\n </td>\n </tr>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">USD/JPY</strong>\n <br>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">09-Feb-14:00 -> 22-Feb-06:00</span>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">Target Level: 115.1376</strong>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/CP_887404667.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td colspan=\"2\">\n <table cellspacing=\"2\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"border-collapse: collapse;\">\n <tbody>\n <tr>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; font-weight: bold;\" valign=\"top\">\nSL:\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n(A)\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n114.5000\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\nLast TP of Falling Wedge\n</td>\n </tr>\n <tr>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; font-weight: bold;\" valign=\"top\">\nRL:\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n(B)\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n115.1250\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px\" valign=\"top\">\nLast TP of Falling Wedge\n</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 2 days\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">1 hour</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Falling Wedge</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">157 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">22-Feb-04:00</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nUSD/JPY has broken through a resistance line of a Falling Wedge and suggests a possible movement to 115.1376 within the next 3 days. It has tested this line in the past, so one should probably wait for a confirmation of this breakout before taking action. If the breakout doesn't confirm, we could see a retracement back to lines seen in the last 11 days.\n\n <br>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Supported by RSI below 40</strong>\n </td>\n </tr>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">AUD/USD</strong>\n <br>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">16-Feb-06:30 -> 22-Feb-06:00</span>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">Target Level: 0.7245</strong>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/KL_887474226.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 20 hours\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">15 Minutes</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Resistance</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">316 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">22-Feb-05:45</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nAUD/USD has broken through a line of 0.7219 and suggests a possible movement to 0.7245 within the next 19 hours. It has tested this line numerous times in the past, so one should wait for a confirmation of this breakout before taking any action. If the breakout doesn't confirm, we could see a retracement back to lines seen in the last 6 days.\n\n <br>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Supported by Upward sloping Moving Average</strong>\n </td>\n </tr>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">USD/CHF</strong>\n <br>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">17-Feb-12:30 -> 22-Feb-06:00</span>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">Target Level: 0.9218</strong>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/KL_887448832.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 12 hours\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">15 Minutes</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Resistance</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">203 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">22-Feb-05:00</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nUSD/CHF is heading towards a line of 0.9218. If this movement continues, the price of USD/CHF could test 0.9218 within the next 11 hours. But don't be so quick to trade, it has tested this line numerous times in the past, so this movement could be short-lived and end up rebounding.\n\n <br>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Supported by Upward sloping Moving Average</strong>\n </td>\n </tr>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">NZD/USD</strong>\n <br>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">17-Feb-14:15 -> 22-Feb-06:00</span>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">Target Level: 0.6747</strong>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/KL_887475226.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 12 hours\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">15 Minutes</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Resistance</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">200 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">22-Feb-05:45</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nNZD/USD has broken through a resistance line. It has touched this line numerous times in the last 5 days. This breakout shows a potential move to 0.6747 within the next 12 hours. Because we have seen it retrace from this level in the past, one should wait for confirmation of the breakout.\n\n <br>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Supported by Upward sloping Moving Average</strong>\n </td>\n </tr>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">EUR/JPY</strong>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">23-Jan-19:00 -> 21-Feb-19:00</span>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/CC_885751468.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 13 hours\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Daily</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Consecutive Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">4 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">20-Feb-19:00</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nEUR/JPY has moved lower after 4 consecutive daily candles from 131.3130 to 130.1070 in the last 6 days.\n</td>\n </tr>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">EUR/CHF</strong>\n <br>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">08-Feb-08:00 -> 22-Feb-06:00</span>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">Target Level: 1.0550</strong>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/CP_887401031.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td colspan=\"2\">\n <table cellspacing=\"2\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"border-collapse: collapse;\">\n <tbody>\n <tr>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; font-weight: bold;\" valign=\"top\">\nSL:\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n(A)\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n1.0338\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\nLast TP of Channel Down\n</td>\n </tr>\n <tr>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; font-weight: bold;\" valign=\"top\">\nRL:\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n(B)\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n1.0550\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px\" valign=\"top\">\nLast TP of Channel Down\n</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 2 days\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">1 hour</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Channel Down</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">184 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">22-Feb-04:00</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nEUR/CHF is moving towards a resistance line which it has tested numerous times in the past. We have seen it retrace from this line before, so at this stage it isn't clear whether it will breach this line or rebound as it did before. If EUR/CHF continues in its current trajectory, we could see it reach 1.0550 within the next 3 days.\n\n <br>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Supported by Upward sloping Moving Average</strong>\n </td>\n </tr>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">XAU/USD</strong>\n <br>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">16-Feb-22:30 -> 22-Feb-06:00</span>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">Target Level: 1886.6600</strong>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/KL_887405246.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 11 hours\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">30 Minutes</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Support</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">103 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">22-Feb-04:00</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nThe movement of XAU/USD towards 1886.6600 price line is yet another test of the line it reached numerous times in the past. We could expect this test to happen in the next 10 hours, but it is uncertain whether it will result in a breakout through this line, or simply rebound back to current lines.\n\n <br>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Supported by Downward sloping Moving Average</strong>\n </td>\n </tr>\n <tr>\n <td>\n <table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tr>\n <td style=\"border-top: 2px solid #696A6C; padding: 5px;\">\n <strong style=\" font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">XAG/USD</strong>\n <br>\n <span style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; direction: LTR\">11-Feb-16:00 -> 22-Feb-06:00</span>\n </td>\n <td style=\"border-top: 2px solid #696A6C; text-align: right; vertical-align: top; padding: 5px;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 16px; color: #0B5B9C; font-weight: 600;\">Target Level: 23.7090</strong>\n </td>\n </tr>\n </table>\n </td>\n </tr>\n <tr>\n <td>\n <table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"width: 100%; border-collapse: collapse;\">\n <tbody>\n <tr>\n <td width=\"300\" style=\"width: 300px; padding: 4px;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/chart/6214c557c1b32c3cd761d0f0/CP_887447433.png?bid=604&tz=EST&width=300&height=210&imgname=image.png\" width=\"300\" height=\"210\">\n </td>\n <td style=\"vertical-align: top; padding: 4px;\">\n <table style=\"width: 100%;\" cellspacing=\"2\" cellpadding=\"0\" border=\"0\">\n <tbody>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td colspan=\"2\">\n <table cellspacing=\"2\" cellpadding=\"0\" border=\"0\" bgcolor=\"#FFFFFF\" class=\"table0\" style=\"border-collapse: collapse;\">\n <tbody>\n <tr>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; font-weight: bold;\" valign=\"top\">\nSL:\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n(A)\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n23.7090\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\nLast TP of Rising Wedge\n</td>\n </tr>\n <tr>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; font-weight: bold;\" valign=\"top\">\nRL:\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n(B)\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px;\" valign=\"top\">\n24.3090\n</td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C; padding-left: 4px\" valign=\"top\">\nLast TP of Rising Wedge\n</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Target Period:</strong> 2 days\n <br>\n </td>\n </tr>\n <tr>\n <td colspan=\"2\" style=\"font-size: 13px\"> </td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Interval</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">30 Minutes</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Pattern</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Rising Wedge</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Length</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">244 Candles</td>\n </tr>\n <tr>\n <td>\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">Identified</strong>\n </td>\n <td style=\"font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">22-Feb-05:00</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"border: 0; padding: 4px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #696A6C;\">\nXAG/USD is moving towards a support line. Because we have seen it retrace from this line before, we could see either a break through this line, or a rebound back to current levels. It has touched this line numerous times in the last 8 days and may test it again within the next 2 days.\n</td>\n </tr>\n </tbody>\n </table>\n </td>\n </tr>\n <tr>\n <td style=\"padding: 10px 10px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\"\nbgcolor=\"#F3F2F5\">\n <strong style=\"font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">Disclaimer</strong>\n <br/>\n <br/>This service is subject to this\n <a href=\"https://trader.autochartist.com/privacy-policy/\" target=\"_blank\">privacy policy</a>,\n <a href=\"https://trader.autochartist.com/disclaimer/\" target=\"_blank\">disclaimers</a> and\n <a href=\"https://trader.autochartist.com/terms-and-conditions/\" target=\"_blank\">terms and conditions.</a>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n </td>\n </tr>\n </tbody>\n </table>\n </body>\n </html>"