openapi: 3.0.0
info:
  title: Market Snapshot API
  description: "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.\n\n# API Request\
    \ Authentication\n\nOur APIs require the following url parameters on every call:\n\n_**broker**_**id** – your customer\
    \ ID on our systems (provided to you)  \n_**user**_ – a unique ID of the end-user consuming the information. For server-2-Server\
    \ integrations this would typically be your company name  \n_**accounttype**_ – 0 = LIVE, 1 = DEMO  \n**expiry** _– Unix\
    \ timestamp of when this token will expire__________**token**_ – a token generated by MD5(user|\\[accounttype\\]|\\[expiry\\\
    ]\\[secretkey\\])\n\nin which _secretkey_ is the secret key provided to you, not to be shared with the end-user\n\nNote\
    \ the ‘|’ (Pipe) character before and after the AccountType parameter\n\n``` php\n$expiryDate = time() + (3 * 24 * 60\
    \ * 60);\n$userid = “myuserid”;\n$accountType = “0”;\n$secretKey = “secretkey”;\n$token = md5(“${userid}|${accountType}|${expiryDate}${secretKey\
    \ }”);\necho $token;\n?>\n\n ```\n\n``` python\nimport hashlib\nimport time\nexpiry_date = int(time.time()) + (3 * 24\
    \ * 60 * 60)\nuserid = \"myuserid\"\naccount_type = \"0\"\nsecret_key = \"secretkey\"\ntoken = hashlib.md5(f\"{userid}|{account_type}|{expiry_date}{secret_key}\"\
    .encode(\"utf-8\")).hexdigest()\nprint(token)\n\n ```"
  version: 1.0.0
servers:
- url: https://api.autochartist.com
paths:
  /mr/api/reports/types:
    get:
      tags:
      - Market Snapshot
      summary: Available snapshot types
      description: "Returns the available reports types\n\n#### Return format\n\n*   **Status 200** - application/json - latest\
        \ pattern results.\n*   The JSON object includes the following keys:\n    *   **report_id** - id to be used in subsequent\
        \ calls\n    *   **name** - the name of the report\n    *   last_updated - the last updated date/time\n\n#### Requires\
        \ authentication\n\nA valid request with an authorized MD5 token will be accepted"
      parameters:
      - name: broker_id
        in: query
        schema:
          type: string
        description: Broker ID.
        example: '{{broker_id}}'
      - name: token
        in: query
        schema:
          type: string
        description: Security token. See https://support.autochartist.com/en/knowledgebase/article/security-token-generation
        example: '{{token}}'
      - name: user
        in: query
        schema:
          type: string
        description: Username
        example: '{{user}}'
      - name: expire
        in: query
        schema:
          type: string
        description: Expiry of this link as a unix timestamp
        example: '{{expire}}'
      - name: account_type
        in: query
        schema:
          type: string
        description: 0 = LIVE, 1 = DEMO
        example: '{{account_type}}'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
              - 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'
  /mr/api/reports/:
    get:
      tags:
      - Market Snapshot
      summary: Available snapshot instances
      description: "Returns the available reports.\n\n#### Return format\n\n*   **Status 200** - application/json - latest\
        \ pattern results.\n*   The JSON object includes the following keys:\n    *   **report_id** - id to be used in subsequent\
        \ calls\n    *   **report_uid** - a unique identifier for this instance of a report\n    *   **generated** - date/time\
        \ of when this report was generated\n    *   **session** - US = US Session, EU = European Session, AS = Asian Session\n\
        \n#### Requires authentication\n\nA valid request with an authorized MD5 token will be accepted"
      parameters:
      - name: broker_id
        in: query
        schema:
          type: string
        description: Broker ID.
        example: '{{broker_id}}'
      - name: token
        in: query
        schema:
          type: string
        description: Security token. See https://support.autochartist.com/en/knowledgebase/article/security-token-generation
        example: '{{token}}'
      - name: user
        in: query
        schema:
          type: string
        description: Username
        example: '{{user}}'
      - name: expire
        in: query
        schema:
          type: string
        description: Expiry of this link as a unix timestamp
        example: '{{expire}}'
      - name: account_type
        in: query
        schema:
          type: string
        description: 0 = LIVE, 1 = DEMO
        example: '{{account_type}}'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
              - 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
  /mr/api/reports/{reportuid}:
    get:
      tags:
      - Market Snapshot
      summary: Snapshot
      description: "Returns the content of a market snapshot\n\n#### Return format\n\n*   **Status 200** - application/json\
        \ - latest pattern results.\n*   The JSON object includes the following keys:\n    *   **report_id** - id to be used\
        \ in subsequent calls\n    *   **report_uid** - a unique identifier for this instance of a report\n    *   **generated**\
        \ - date/time of when this report was generated\n    *   **session** - US = US Session, EU = European Session, AS\
        \ = Asian Session\n    *   messages - array of items describing the market snapshot. Includes heading, description,\
        \ dates, etc.\n    *   symbol_reports - array of trade setups found in this market snapshot\n        *   symbol_report_id\
        \ - use this id to request images for each result\n        *   levels - important levels for each trading ipportunity\n\
        \        *   messages - text relating to this trading opportunity\n\n#### Requires authentication\n\nA valid request\
        \ with an authorized MD5 token will be accepted"
      parameters:
      - name: broker_id
        in: query
        schema:
          type: string
        description: Broker ID.
        example: '{{broker_id}}'
      - name: token
        in: query
        schema:
          type: string
        description: Security token. See https://support.autochartist.com/en/knowledgebase/article/security-token-generation
        example: '{{token}}'
      - name: user
        in: query
        schema:
          type: string
        description: Username
        example: '{{user}}'
      - name: expire
        in: query
        schema:
          type: string
        description: Expiry of this link as a unix timestamp
        example: '{{expire}}'
      - name: account_type
        in: query
        schema:
          type: string
        description: 0 = LIVE, 1 = DEMO
        example: '{{account_type}}'
      - name: report_id
        in: query
        schema:
          type: string
        description: the report type id (See "GET Available Report Types")
        example: '{{report_id}}'
      - name: reportuid
        in: query
        schema:
          type: string
        description: 'The reportuid to retrieve (See "GET Available Reports").

          Use "latest" to get the latest instance of the specified report type'
        example: '{{reportuid}}'
      - name: include
        in: query
        schema:
          type: string
        description: (optional) Inlcude messages
        example: messages
      - name: include
        in: query
        schema:
          type: string
        description: (optional) Include pattern details. This can be called separatly See "GET pattern details"
        example: pattern_detail
      - name: locale
        in: query
        schema:
          type: string
        description: 'Locale language tag. This parameter to be used for one locale

          '
        example: '{{locale}}'
      - name: reportuid
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example:
                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: 600440291809491101
                  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: 600440291809491101
                    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: 600440764593723101
                  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: 600440764593723101
                    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: 600437468098621101
                  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: 600437468098621101
                    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: 600441013253068101
                  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: 600441013253068101
                    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: 600432757514157106
                  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: 600432757514157106
                    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: 600440526851868101
                  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: 600440526851868101
                    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: 600440301990209101
                  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: 600440301990209101
                    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: 600440058406441101
                  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: 600440058406441101
                    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
  /mr/api/reports/{reportuid}/{symbol_report_id}.{imageformat}:
    get:
      tags:
      - Market Snapshot
      summary: Chart Image
      description: "Returns an image for a particular result in the snapshot\n\n#### Return format\n\n*   **Status 200** -\
        \ application/json - latest pattern results.\n*   image - in either PNG / SVG format depending on the reuqest\n  \
        \  \n\n#### Requires authentication\n\nA valid request with an authorized MD5 token will be accepted"
      parameters:
      - name: broker_id
        in: query
        schema:
          type: string
        description: Broker ID.
        example: '{{broker_id}}'
      - name: token
        in: query
        schema:
          type: string
        description: Security token. See https://support.autochartist.com/en/knowledgebase/article/security-token-generation
        example: '{{token}}'
      - name: user
        in: query
        schema:
          type: string
        description: Username
        example: '{{user}}'
      - name: expire
        in: query
        schema:
          type: string
        description: Expiry of this link as a unix timestamp
        example: '{{expire}}'
      - name: account_type
        in: query
        schema:
          type: string
        description: 0 = LIVE, 1 = DEMO
        example: '{{account_type}}'
      - name: report_id
        in: query
        schema:
          type: string
        description: the report type id (See "GET Available Report Types")
        example: '{{report_id}}'
      - name: reportuid
        in: query
        schema:
          type: string
        description: 'The reportuid to retrieve (See "GET Available Reports").

          Use "latest" to get the latest instance of the specified report type'
        example: '{{reportuid}}'
      - name: symbol_report_id
        in: query
        schema:
          type: string
        description: symbol_report_id returned by one of the results returned by the GET Snapshot call
        example: '{{symbol_report_id}}'
      - name: w
        in: query
        schema:
          type: string
        description: width of image in pixels
        example: '{{width}}'
      - name: h
        in: query
        schema:
          type: string
        description: height of image in pixels
        example: '{{height}}'
      - name: small
        in: query
        schema:
          type: boolean
        description: 'Optional: returns an image that is zoomed into the last part of the opportunity'
        example: 'true'
      - name: imageformat
        in: query
        schema:
          type: string
        description: either png or svg
        example: '{{imageformat}}'
      - name: reportuid
        in: path
        schema:
          type: string
        required: true
      - name: symbol_report_id
        in: path
        schema:
          type: string
        required: true
      - name: imageformat
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json: {}
  /mr/api/reports/{reportuid}/{symbol_report_id}/pattern_detail:
    get:
      tags:
      - Market Snapshot
      summary: Pattern details
      description: "Returns the pattern details for the specified result from the GET snapshot call\n\n#### Return format\n\
        \n*   **Status 200** - application/json - latest pattern results.\n    \n\n#### Fields\n\nBelow are the return fields.\
        \ There are fields that are common to all analysis types, and some fields that are specific to each analysis type.\n\
        \n##### Common fields\n\n*   **symbol** - The TICKER on which this trade setup was identified\n*   **exchange** -\
        \ The exchange to which this instrument belongs\n*   **short_name** - The short name of the symbol\n*   **long_name**\
        \ - The long name of the symbols\n*   **age** - The age (in candles) of the trade setup\n*   **complete** - Is this\
        \ trade fully formed or still in the process of forming.\n*   **direction** - Direction of forecast\n*   **granularity**\
        \ - Data interval on which this setup was identified\n*   **forecast_minutes** - The forecast in minutes\n*   **is_new**\
        \ - Is this a new setup since the last call to the API\n*   **length** - the length of this trade setup in candles\n\
        *   **pattern_start_time** - The first candle in this trade setup\n*   **pattern_end_time** - The last candle in this\
        \ trade setup. Ignore if complete == false.\n*   **pattern_name** - The name of the pattern that was identified\n\
        *   **relevant** - 1 = this trade setup is still relevant. 0 = trade expired\n*   **result_uid** - unique identifier\
        \ of a result\n*   **prediction_pip_profit** - Internal. Ignore\n*   **use_relevance_logic** - Internal. Ignore\n\
        *   **pattern_id** - Internal. Ignore\n*   **symbol_id** - Internal symbol code. Ignore\n    \n\n##### Fields specific\
        \ to Chart Patterns\n\n*   **breakout** - strength (between 0 and 1) of the breakout. -1 == no breakout yet\n*   **clarity**\
        \ - clarity of this pattern (between 0 and 1)\n*   **initial_trend** - strength (between 0 and 1) of the initial trend\n\
        *   **quality** - overall pattern quality (between 0 and 1)\n*   **uniformity** - uniformity (between 0 and 1) of\
        \ the pattern\n*   **volume** - strength (between 0 and 1) of the volume increase at point of breakout. Not applicable\
        \ when breakout == -1\n*   **trend_change** - Continuation / Reversal\n*   **qty_tp** - quantity of turning points\
        \ that make up this pattern\n*   **pattern_end_price** - the closing price of the last candle of this pattern. -1\
        \ if breakout == -1\n*   **pattern_start_price** - the closing price of the first candle of this pattern\n*   **prediction_price_from**\
        \ - the start of the forecast area\n*   **prediction_price_to** - the end of the forecast area\n*   **prediction_time_to**\
        \ - the date.time when this pattern expires\n*   **resistance_x0** - the x (date) coordinate of the first point of\
        \ the resistance line\n*   **resistance_x1** - the x (date) coordinate of the second point of the resistance line\n\
        *   **resistance_y0** - the y (price) coordinate of the first point of the resistance line\n*   **resistance_y1**\
        \ - the y (price) coordinate of the second point of the resistance line\n*   **support_x0** - the x (date) coordinate\
        \ of the first point of the support line\n*   **support_x1** - the x (date) coordinate of the second point of the\
        \ support line\n*   **support_y0** - the y (price) coordinate of the first point of the support line\n*   **support_y1**\
        \ - the y (price) coordinate of the second point of the support line\n    \n\n##### Fields specific to Fibonacci Patterns\n\
        \n*   **averageQuality** - The overall visual quality of the pattern\n*   **clarity** - clarity of this pattern (between\
        \ 0 and 1)\n*   **patternEndPrice** - the closing price of the last candle of this pattern. -1 if breakout == -1\n\
        *   **patternStartPrice** - the closing price of the first candle of this pattern\n*   **priceA** - Price of point\
        \ A\n*   **priceB** - Price of point B\n*   **priceC** - Price of point C\n*   **priceD** - Price of point D\n*  \
        \ **priceX** - Price of point X (-1 if not applicable for this Fibonacci setup)\n*   **timeA** - Date/time of point\
        \ A. If year <= 1900 then ignore\n*   **timeB** - Date/time of point B. If year <= 1900 then ignore\n*   **timeC**\
        \ - Date/time of point C. If year <= 1900 then ignore\n*   **timeD** - Date/time of point D. If year <= 1900 then\
        \ ignore\n*   **timeX** - Date/time of point X. If year <= 1900 then ignore\n*   **qtyTP** - The quantity of turning\
        \ points that make up this pattern\n*   **ratioQuality** - quality of the ratios of lines. Close to 1 means the proportions\
        \ of the pattern are reaching the ideal\n*   **target03** - first Fib target of the pattern\n*   **target05** - second\
        \ Fib target of the pattern\n*   **target06** - third Fib target of the pattern\n*   **target07** - fourth Fib target\
        \ of the pattern\n*   **target10** - fifth Fib target of the pattern\n*   **target12** - sixth Fib target of the pattern\n\
        *   **target16** - seventh Fib target of the pattern\n*   **timeQuality** - quality indicator that represents how\
        \ equally the turning points of the pattern are distributed over time\n*   **priceAdjustment** - Internal. Ignore\n\
        *   **instrumentId** - Internal. Ignore\n*   **bandwidth** - Internal. Ignore\n*   **temporaryPattern** - Internal.\
        \ Ignore,\n    \n\n##### Fields specific to Key Levels\n\n*   **patternPrice** - the price of the key level\n*   **approachingRegion**\
        \ - Price at which the opportunity was found to be approaching the key level. applicable to emerging patterns only.\n\
        *   **approachingTime** - date/time when the pattern was deemed to be approaching.\n*   **atBarIdentified** - the\
        \ candle on which this pattern was found\n*   **atPriceIdentified** - the price at which this pattern was identified\n\
        *   **bandwidth** - Internal. Ignore.\n*   **barsE** - Internal. Ignore.\n*   **errorMargin** - Internal. Ignore.\n\
        *   **furthestPrice** - the price that was furthest away from the key level\n*   **predictionPriceFrom** - the start\
        \ of the prediction area\n*   **predictionPriceTo** - the end of the prediction area\n*   **predictionTimeBars** -\
        \ the length (in candles of the forecast)\n*   **predictionTimeFrom** - the start of the forecast period\n*   **priceE**\
        \ - Ignore. Internal\n*   **qtyTP** - The number of turning points that comprise this pattern\n*   **temporaryPattern**\
        \ - Ignore. Internal\n*   **x0** - the date/time of the 1st touch point of the price graph\n*   **x1** - the date/time\
        \ of the 2nd touch point of the price graph\n*   **x2** - the date/time of the 3rd touch point of the price graph\n\
        *   **x3** - the date/time of the 4th touch point of the price graph. 1970-01-01 = ignore\n*   **x4** - the date/time\
        \ of the 5th touch point of the price graph. 1970-01-01 = ignore\n*   **x5** - the date/time of the 6th touch point\
        \ of the price graph. 1970-01-01 = ignore\n*   **x6** - the date/time of the 7th touch point of the price graph. 1970-01-01\
        \ = ignore\n*   **x7** - the date/time of the 8th touch point of the price graph. 1970-01-01 = ignore\n*   **x8**\
        \ - the date/time of the 9th touch point of the price graph. 1970-01-01 = ignore\n*   **x9** - the date/time of the\
        \ 10th touch point of the price graph. 1970-01-01 = ignore\n    \n\n##### Fields specific to Big Movements\n\n*  \
        \ **from_price** - the starting price of the big movement\n*   **to_price** - the ending price of the big movement\n\
        *   **movement** - the difference between the start and end of the big move\n*   **percentile** - the percentile of\
        \ move in relation to past movements. Typically this is >= 95\n*   **statistical_movement** - Internal. Ignore.\n\
        \    \n\n##### Fields specific to Consecutive Candles\n\n*   **from_price** - the starting price of the trade setup\n\
        *   **to_price** - the ending price of the trade setup\n*   **qty_candles** - the number of consecutive candles\n\
        *   **percentile** - the percentile of the number of consecutive candles in relation to past consecutive candle occurrences.\
        \ Typically this is >= 95\n*   **statistical_qty_candles** - Internal. Ignore.\n*   **use_relevance_logic** - Internal.\
        \ Ignore.\n    \n\n#### Requires authentication\n\nA valid request with an authorized MD5 token will be accepted"
      parameters:
      - name: broker_id
        in: query
        schema:
          type: string
        description: Broker ID.
        example: '{{broker_id}}'
      - name: token
        in: query
        schema:
          type: string
        description: Security token. See https://support.autochartist.com/en/knowledgebase/article/security-token-generation
        example: '{{token}}'
      - name: user
        in: query
        schema:
          type: string
        description: Username
        example: '{{user}}'
      - name: expire
        in: query
        schema:
          type: string
        description: Expiry of this link as a unix timestamp
        example: '{{expire}}'
      - name: account_type
        in: query
        schema:
          type: string
        description: 0 = LIVE, 1 = DEMO
        example: '{{account_type}}'
      - name: report_id
        in: query
        schema:
          type: string
        description: the report type id (See "GET Available Report Types")
        example: '{{report_id}}'
      - name: reportuid
        in: query
        schema:
          type: string
        description: 'The reportuid to retrieve (See "GET Available Reports").

          Use "latest" to get the latest instance of the specified report type'
        example: '{{reportuid}}'
      - name: symbol_report_id
        in: query
        schema:
          type: string
        description: symbol_report_id returned by one of the results returned by the GET Snapshot call
        example: '{{symbol_report_id}}'
      - name: reportuid
        in: path
        schema:
          type: string
        required: true
      - name: symbol_report_id
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              examples:
                example_-_key_level:
                  summary: Example - Key Level
                  value:
                    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:
                    - rel: chart-xs
                      href: https://component.autochartist.com/to/resources/charts/KeyLevel_731820533.png?account_type=LIVE&broker_id=604&expire=1631318400&user=demo@autochartist.com&token=74e530f0e0f5d966dc27268330baa9c2&width=240&height=180
                    - rel: chart-sm
                      href: https://component.autochartist.com/to/resources/charts/KeyLevel_731820533.png?account_type=LIVE&broker_id=604&expire=1631318400&user=demo@autochartist.com&token=74e530f0e0f5d966dc27268330baa9c2&width=340&height=240
                    - rel: chart-md
                      href: https://component.autochartist.com/to/resources/charts/KeyLevel_731820533.png?account_type=LIVE&broker_id=604&expire=1631318400&user=demo@autochartist.com&token=74e530f0e0f5d966dc27268330baa9c2&width=360&height=300
                    - rel: chart-lg
                      href: https://component.autochartist.com/to/resources/charts/KeyLevel_731820533.png?account_type=LIVE&broker_id=604&expire=1631318400&user=demo@autochartist.com&token=74e530f0e0f5d966dc27268330baa9c2&width=430&height=300
                    - rel: drawing-data
                      href: https://component.autochartist.com/to/resources/results/detail/drawing-data/KeyLevel/731820533?account_type=LIVE&broker_id=604&broker_id=604&expire=1631318400&user=demo@autochartist.com&token=74e530f0e0f5d966dc27268330baa9c2
                example_-_chart_pattern:
                  summary: Example - Chart Pattern
                  value:
                    new: false
                    data:
                      resistance_y0: 0.8567
                      resistance_y1: 0.85723
                      resistance_x0: '2021-09-24T08:00:00.000Z'
                      resistance_x1: '2021-09-24T11:00:00.000Z'
                      support_y0: 0.85444
                      support_y1: 0.8551
                      support_x0: '2021-09-24T08:30:00.000Z'
                      support_x1: '2021-09-24T14:00:00.000Z'
                      prediction_time_to: '2021-09-24T17:45:00.000Z'
                      trend_change: Continuation
                      quality: 0.44412558150100806
                      volume: 1
                      uniformity: 0.3019106485884311
                      initial_trend: 0.0691024174041062
                      prediction_price_from: 0.8571618619070961
                      prediction_price_to: 0.8578644685770307
                      clarity: 0.961363678510487
                      breakout: -1
                      pattern_start_price: 0.8535
                      pattern_end_price: 0.8568
                      qty_tp: 4
                      symbol: EURGBP
                      granularity: 30
                      direction: 1
                      length: 13
                      complete: false
                      exchange: FOREX
                      age: 11
                      relevant: 0
                      pattern_id: 16
                      symbol_id: 354879
                      long_name: EURGBP
                      short_name: EURGBP
                      pattern_end_time: '2021-09-24T14:30:00.000Z'
                      pattern_start_time: '2021-09-24T08:00:00.000Z'
                      pattern_name: Channel Up
                      result_uid: 744378050
                      is_new: false
                      prediction_pip_profit: 0
                      use_relevance_logic: false
                      forecast_minutes: 129
                    links:
                    - rel: chart-xs
                      href: https://component.autochartist.com/to/resources/charts/ChartPattern_744378050.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=240&height=180
                    - rel: chart-sm
                      href: https://component.autochartist.com/to/resources/charts/ChartPattern_744378050.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=340&height=240
                    - rel: chart-md
                      href: https://component.autochartist.com/to/resources/charts/ChartPattern_744378050.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=360&height=300
                    - rel: chart-lg
                      href: https://component.autochartist.com/to/resources/charts/ChartPattern_744378050.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=430&height=300
                    - rel: drawing-data
                      href: https://component.autochartist.com/to/resources/results/detail/drawing-data/ChartPattern/744378050?account_type=LIVE&broker_id=24&broker_id=24&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578
                example_-_fibonacci_pattern:
                  summary: Example - Fibonacci Pattern
                  value:
                    new: false
                    data:
                      bandwidth: 2
                      patternStartPrice: 0.8567
                      patternEndPrice: -1
                      qtyTP: 4
                      priceX: -1
                      timeX: '1899-12-29T05:00:00.000Z'
                      priceA: 0.8544399738311768
                      timeA: '2021-09-24T08:30:00.000Z'
                      priceB: 0.857230007648468
                      timeB: '2021-09-24T11:00:00.000Z'
                      priceC: 0.8550999760627747
                      timeC: '2021-09-24T14:00:00.000Z'
                      priceD: 0.8578900098800659
                      timeD: '1899-12-29T05:00:00.000Z'
                      averageQuality: 0.7501581311225891
                      timeQuality: -1
                      ratioQuality: -10.406502849133403
                      clarity: 0.5003162055336045
                      temporaryPattern: false
                      target10: 0.8550999760627747
                      target16: 0.8533756732940674
                      target06: 0.8561657071113586
                      target12: 0.8543410897254944
                      target07: 0.8556966185569763
                      target03: 0.8568243384361267
                      target05: 0.8564950227737427
                      priceAdjustment: 0
                      instrumentId: 0
                      symbol: EURGBP
                      granularity: 30
                      direction: -1
                      length: 16
                      complete: false
                      exchange: FOREX
                      age: 11
                      relevant: 0
                      pattern_id: 4
                      symbol_id: 354879
                      long_name: EURGBP
                      short_name: EURGBP
                      pattern_end_time: '2021-09-24T14:30:00.000Z'
                      pattern_start_time: '2021-09-24T08:00:00.000Z'
                      result_uid: 744378051
                      is_new: true
                      prediction_pip_profit: 0
                      use_relevance_logic: false
                      forecast_minutes: 159
                    links:
                    - rel: chart-xs
                      href: https://component.autochartist.com/to/resources/charts/Fibonacci_744378051.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=240&height=180
                    - rel: chart-sm
                      href: https://component.autochartist.com/to/resources/charts/Fibonacci_744378051.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=340&height=240
                    - rel: chart-md
                      href: https://component.autochartist.com/to/resources/charts/Fibonacci_744378051.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=360&height=300
                    - rel: chart-lg
                      href: https://component.autochartist.com/to/resources/charts/Fibonacci_744378051.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=430&height=300
                    - rel: drawing-data
                      href: https://component.autochartist.com/to/resources/results/detail/drawing-data/Fibonacci/744378051?account_type=LIVE&broker_id=24&broker_id=24&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578
                example_-_big_movement:
                  summary: Example - Big Movement
                  value:
                    new: false
                    data:
                      from_price: 0.65315
                      to_price: 0.64757
                      movement: -0.9074216
                      statistical_movement: -0.71224207
                      percentile: 2
                      symbol: NZDCHF
                      granularity: 60
                      direction: 0
                      length: 14
                      complete: false
                      exchange: FOREX
                      age: 4
                      relevant: 0
                      pattern_id: 0
                      symbol_id: 866795
                      long_name: NZDCHF
                      short_name: NZDCHF
                      pattern_end_time: '2021-09-24T14:00:00.000Z'
                      pattern_start_time: '2021-09-24T00:00:00.000Z'
                      pattern_name: Big Movement
                      result_uid: 744377188
                      is_new: false
                      prediction_pip_profit: 0
                      use_relevance_logic: false
                      forecast_minutes: 279
                    links:
                    - rel: chart-xs
                      href: https://component.autochartist.com/to/resources/charts/BigMovement_744377188.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=240&height=180
                    - rel: chart-sm
                      href: https://component.autochartist.com/to/resources/charts/BigMovement_744377188.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=340&height=240
                    - rel: chart-md
                      href: https://component.autochartist.com/to/resources/charts/BigMovement_744377188.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=360&height=300
                    - rel: chart-lg
                      href: https://component.autochartist.com/to/resources/charts/BigMovement_744377188.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=430&height=300
                    - rel: drawing-data
                      href: https://component.autochartist.com/to/resources/results/detail/drawing-data/BigMovement/744377188?account_type=LIVE&broker_id=24&broker_id=24&broker_id=24&expire=1634947200&page_offset=20&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578
                example_-_consecutive_candles:
                  summary: Example - Consecutive Candles
                  value:
                    new: false
                    data:
                      from_price: 118.54
                      to_price: 119.724
                      qty_candles: 10
                      statistical_qty_candles: 5
                      percentile: 0.95
                      symbol: CHFJPY
                      granularity: 240
                      direction: -1
                      length: 10
                      complete: false
                      exchange: FOREX
                      age: 0
                      relevant: 1
                      pattern_id: 0
                      symbol_id: 866803
                      long_name: CHFJPY
                      short_name: CHFJPY
                      pattern_end_time: '2021-09-24T12:00:00.000Z'
                      pattern_start_time: '2021-09-23T00:00:00.000Z'
                      pattern_name: Consecutive Candles
                      result_uid: 744407624
                      is_new: false
                      prediction_pip_profit: 0
                      use_relevance_logic: false
                      forecast_minutes: 240
                    links:
                    - rel: chart-xs
                      href: https://component.autochartist.com/to/resources/charts/ConsecutiveCandles_744407624.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=60&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=240&height=180
                    - rel: chart-sm
                      href: https://component.autochartist.com/to/resources/charts/ConsecutiveCandles_744407624.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=60&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=340&height=240
                    - rel: chart-md
                      href: https://component.autochartist.com/to/resources/charts/ConsecutiveCandles_744407624.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=60&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=360&height=300
                    - rel: chart-lg
                      href: https://component.autochartist.com/to/resources/charts/ConsecutiveCandles_744407624.png?account_type=LIVE&broker_id=24&expire=1634947200&page_offset=60&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578&width=430&height=300
                    - rel: drawing-data
                      href: https://component.autochartist.com/to/resources/results/detail/drawing-data/ConsecutiveCandles/744407624?account_type=LIVE&broker_id=24&broker_id=24&broker_id=24&expire=1634947200&page_offset=60&locale=en&user=ilan@autochartist.com&token=94dc5016725926907fdfdd9410a46578
  /mr/api/reports/{reportuid}/email:
    get:
      tags:
      - Market Snapshot
      summary: Snapshot rendered for email
      description: "Returns the content of a market snapshot in HTML form that is pre-formatted for email.\n\n#### Return\
        \ format\n\n*   **Status 200** - application/json - latest pattern results.\n*   html content for emails\n    \n\n\
        #### Requires authentication\n\nA valid request with an authorized MD5 token will be accepted"
      parameters:
      - name: broker_id
        in: query
        schema:
          type: string
        description: Broker ID.
        example: '{{broker_id}}'
      - name: token
        in: query
        schema:
          type: string
        description: Security token. See https://support.autochartist.com/en/knowledgebase/article/security-token-generation
        example: '{{token}}'
      - name: user
        in: query
        schema:
          type: string
        description: Username
        example: '{{user}}'
      - name: expire
        in: query
        schema:
          type: string
        description: Expiry of this link as a unix timestamp
        example: '{{expire}}'
      - name: account_type
        in: query
        schema:
          type: string
        description: 0 = LIVE, 1 = DEMO
        example: '{{account_type}}'
      - name: report_id
        in: query
        schema:
          type: string
        description: the report type id (See "GET Available Report Types")
        example: '{{report_id}}'
      - name: reportuid
        in: query
        schema:
          type: string
        description: 'The reportuid to retrieve (See "GET Available Reports").

          Use "latest" to get the latest instance of the specified report type'
        example: '{{reportuid}}'
      - name: locale
        in: query
        schema:
          type: string
        description: 'Locale language tag. This parameter to be used for one locale

          '
        example: '{{locale}}'
      - name: reportuid
        in: path
        schema:
          type: string
        required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              example: "<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;\">&nbsp;</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>&nbsp;</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>&nbsp;\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>&nbsp;</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&nbsp;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\" >\n\
                0.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>&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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\">&nbsp;</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>"
tags:
- name: Market Snapshot
