Market Snapshot API (1.0.0)

Download OpenAPI specification: [Market_Snapshot_API.yaml]

Autochartist Market Snapshots provide a snapshot of trading opportunities currently available. Snapshots are generated three times a day, prior to the opening of the Tokyo, London and New York trading sessions.

API Request Authentication

Our APIs require the following url parameters on every call:

brokerid – your customer ID on our systems (provided to you)
user – a unique ID of the end-user consuming the information. For server-2-Server integrations this would typically be your company name
accounttype – 0 = LIVE, 1 = DEMO
expiry – Unix timestamp of when this token will expire________token – a token generated by MD5(user|[accounttype]|[expiry][secretkey])

in which secretkey is the secret key provided to you, not to be shared with the end-user

Note the ‘|’ (Pipe) character before and after the AccountType parameter

$expiryDate = time() + (3 * 24 * 60 * 60);
$userid = “myuserid”;
$accountType =0;
$secretKey = “secretkey”;
$token = md5(${userid}|${accountType}|${expiryDate}${secretKey });
echo $token;
?>
import hashlib
import time
expiry_date = int(time.time()) + (3 * 24 * 60 * 60)
userid = "myuserid"
account_type = "0"
secret_key = "secretkey"
token = hashlib.md5(f"{userid}|{account_type}|{expiry_date}{secret_key}".encode("utf-8")).hexdigest()
print(token)

Market Snapshot

Available snapshot types

Returns the available reports types

Return format

  • Status 200 - application/json - latest pattern results.
  • The JSON object includes the following keys:
    • report_id - id to be used in subsequent calls
    • name - the name of the report
    • last_updated - the last updated date/time

Requires authentication

A valid request with an authorized MD5 token will be accepted

query Parameters
broker_id
string
Example: broker_id={{broker_id}}

Broker ID.

token
user
string
Example: user={{user}}

Username

expire
string
Example: expire={{expire}}

Expiry of this link as a unix timestamp

account_type
string
Example: account_type={{account_type}}

0 = LIVE, 1 = DEMO

Responses

Response samples

Content type
application/json
[
  • {
    },
  • {
    },
  • {
    }
]

Available snapshot instances

Returns the available reports.

Return format

  • Status 200 - application/json - latest pattern results.
  • The JSON object includes the following keys:
    • report_id - id to be used in subsequent calls
    • report_uid - a unique identifier for this instance of a report
    • generated - date/time of when this report was generated
    • session - US = US Session, EU = European Session, AS = Asian Session

Requires authentication

A valid request with an authorized MD5 token will be accepted

query Parameters
broker_id
string
Example: broker_id={{broker_id}}

Broker ID.

token
user
string
Example: user={{user}}

Username

expire
string
Example: expire={{expire}}

Expiry of this link as a unix timestamp

account_type
string
Example: account_type={{account_type}}

0 = LIVE, 1 = DEMO

Responses

Response samples

Content type
application/json
[
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    },
  • {
    }
]

Snapshot

Returns the content of a market snapshot

Return format

  • Status 200 - application/json - latest pattern results.
  • The JSON object includes the following keys:
    • report_id - id to be used in subsequent calls
    • report_uid - a unique identifier for this instance of a report
    • generated - date/time of when this report was generated
    • session - US = US Session, EU = European Session, AS = Asian Session
    • messages - array of items describing the market snapshot. Includes heading, description, dates, etc.
    • symbol_reports - array of trade setups found in this market snapshot
      • symbol_report_id - use this id to request images for each result
      • levels - important levels for each trading ipportunity
      • messages - text relating to this trading opportunity

Requires authentication

A valid request with an authorized MD5 token will be accepted

path Parameters
reportuid
required
string
query Parameters
broker_id
string
Example: broker_id={{broker_id}}

Broker ID.

token
user
string
Example: user={{user}}

Username

expire
string
Example: expire={{expire}}

Expiry of this link as a unix timestamp

account_type
string
Example: account_type={{account_type}}

0 = LIVE, 1 = DEMO

report_id
string
Example: report_id={{report_id}}

the report type id (See "GET Available Report Types")

reportuid
string
Example: reportuid={{reportuid}}

The reportuid to retrieve (See "GET Available Reports"). Use "latest" to get the latest instance of the specified report type

include
string
Example: include=messages

(optional) Inlcude messages

include
string
Example: include=pattern_detail

(optional) Include pattern details. This can be called separatly See "GET pattern details"

locale
string
Example: locale={{locale}}

Locale language tag. This parameter to be used for one locale

Responses

Response samples

Content type
application/json
{
  • "report_id": 612,
  • "report_uid": "62fb7bba924e6300de1bc578",
  • "generated": "2022-08-16T11:12:58.740Z",
  • "session": "US",
  • "messages": {
    },
  • "symbol_reports": [
    ]
}

Chart Image

Returns an image for a particular result in the snapshot

Return format

  • Status 200 - application/json - latest pattern results.
  • image - in either PNG / SVG format depending on the reuqest

Requires authentication

A valid request with an authorized MD5 token will be accepted

path Parameters
reportuid
required
string
symbol_report_id
required
string
imageformat
required
string
query Parameters
broker_id
string
Example: broker_id={{broker_id}}

Broker ID.

token
user
string
Example: user={{user}}

Username

expire
string
Example: expire={{expire}}

Expiry of this link as a unix timestamp

account_type
string
Example: account_type={{account_type}}

0 = LIVE, 1 = DEMO

report_id
string
Example: report_id={{report_id}}

the report type id (See "GET Available Report Types")

reportuid
string
Example: reportuid={{reportuid}}

The reportuid to retrieve (See "GET Available Reports"). Use "latest" to get the latest instance of the specified report type

symbol_report_id
string
Example: symbol_report_id={{symbol_report_id}}

symbol_report_id returned by one of the results returned by the GET Snapshot call

w
string
Example: w={{width}}

width of image in pixels

h
string
Example: h={{height}}

height of image in pixels

small
boolean
Example: small=true

Optional: returns an image that is zoomed into the last part of the opportunity

imageformat
string
Example: imageformat={{imageformat}}

either png or svg

Responses

Pattern details

Returns the pattern details for the specified result from the GET snapshot call

Return format

  • Status 200 - application/json - latest pattern results.

Fields

Below are the return fields. There are fields that are common to all analysis types, and some fields that are specific to each analysis type.

Common fields
  • symbol - The TICKER on which this trade setup was identified
  • exchange - The exchange to which this instrument belongs
  • short_name - The short name of the symbol
  • long_name - The long name of the symbols
  • age - The age (in candles) of the trade setup
  • complete - Is this trade fully formed or still in the process of forming.
  • direction - Direction of forecast
  • granularity - Data interval on which this setup was identified
  • forecast_minutes - The forecast in minutes
  • is_new - Is this a new setup since the last call to the API
  • length - the length of this trade setup in candles
  • pattern_start_time - The first candle in this trade setup
  • pattern_end_time - The last candle in this trade setup. Ignore if complete == false.
  • pattern_name - The name of the pattern that was identified
  • relevant - 1 = this trade setup is still relevant. 0 = trade expired
  • result_uid - unique identifier of a result
  • prediction_pip_profit - Internal. Ignore
  • use_relevance_logic - Internal. Ignore
  • pattern_id - Internal. Ignore
  • symbol_id - Internal symbol code. Ignore
Fields specific to Chart Patterns
  • breakout - strength (between 0 and 1) of the breakout. -1 == no breakout yet
  • clarity - clarity of this pattern (between 0 and 1)
  • initial_trend - strength (between 0 and 1) of the initial trend
  • quality - overall pattern quality (between 0 and 1)
  • uniformity - uniformity (between 0 and 1) of the pattern
  • volume - strength (between 0 and 1) of the volume increase at point of breakout. Not applicable when breakout == -1
  • trend_change - Continuation / Reversal
  • qty_tp - quantity of turning points that make up this pattern
  • pattern_end_price - the closing price of the last candle of this pattern. -1 if breakout == -1
  • pattern_start_price - the closing price of the first candle of this pattern
  • prediction_price_from - the start of the forecast area
  • prediction_price_to - the end of the forecast area
  • prediction_time_to - the date.time when this pattern expires
  • resistance_x0 - the x (date) coordinate of the first point of the resistance line
  • resistance_x1 - the x (date) coordinate of the second point of the resistance line
  • resistance_y0 - the y (price) coordinate of the first point of the resistance line
  • resistance_y1 - the y (price) coordinate of the second point of the resistance line
  • support_x0 - the x (date) coordinate of the first point of the support line
  • support_x1 - the x (date) coordinate of the second point of the support line
  • support_y0 - the y (price) coordinate of the first point of the support line
  • support_y1 - the y (price) coordinate of the second point of the support line
Fields specific to Fibonacci Patterns
  • averageQuality - The overall visual quality of the pattern
  • clarity - clarity of this pattern (between 0 and 1)
  • patternEndPrice - the closing price of the last candle of this pattern. -1 if breakout == -1
  • patternStartPrice - the closing price of the first candle of this pattern
  • priceA - Price of point A
  • priceB - Price of point B
  • priceC - Price of point C
  • priceD - Price of point D
  • priceX - Price of point X (-1 if not applicable for this Fibonacci setup)
  • timeA - Date/time of point A. If year <= 1900 then ignore
  • timeB - Date/time of point B. If year <= 1900 then ignore
  • timeC - Date/time of point C. If year <= 1900 then ignore
  • timeD - Date/time of point D. If year <= 1900 then ignore
  • timeX - Date/time of point X. If year <= 1900 then ignore
  • qtyTP - The quantity of turning points that make up this pattern
  • ratioQuality - quality of the ratios of lines. Close to 1 means the proportions of the pattern are reaching the ideal
  • target03 - first Fib target of the pattern
  • target05 - second Fib target of the pattern
  • target06 - third Fib target of the pattern
  • target07 - fourth Fib target of the pattern
  • target10 - fifth Fib target of the pattern
  • target12 - sixth Fib target of the pattern
  • target16 - seventh Fib target of the pattern
  • timeQuality - quality indicator that represents how equally the turning points of the pattern are distributed over time
  • priceAdjustment - Internal. Ignore
  • instrumentId - Internal. Ignore
  • bandwidth - Internal. Ignore
  • temporaryPattern - Internal. Ignore,
Fields specific to Key Levels
  • patternPrice - the price of the key level
  • approachingRegion - Price at which the opportunity was found to be approaching the key level. applicable to emerging patterns only.
  • approachingTime - date/time when the pattern was deemed to be approaching.
  • atBarIdentified - the candle on which this pattern was found
  • atPriceIdentified - the price at which this pattern was identified
  • bandwidth - Internal. Ignore.
  • barsE - Internal. Ignore.
  • errorMargin - Internal. Ignore.
  • furthestPrice - the price that was furthest away from the key level
  • predictionPriceFrom - the start of the prediction area
  • predictionPriceTo - the end of the prediction area
  • predictionTimeBars - the length (in candles of the forecast)
  • predictionTimeFrom - the start of the forecast period
  • priceE - Ignore. Internal
  • qtyTP - The number of turning points that comprise this pattern
  • temporaryPattern - Ignore. Internal
  • x0 - the date/time of the 1st touch point of the price graph
  • x1 - the date/time of the 2nd touch point of the price graph
  • x2 - the date/time of the 3rd touch point of the price graph
  • x3 - the date/time of the 4th touch point of the price graph. 1970-01-01 = ignore
  • x4 - the date/time of the 5th touch point of the price graph. 1970-01-01 = ignore
  • x5 - the date/time of the 6th touch point of the price graph. 1970-01-01 = ignore
  • x6 - the date/time of the 7th touch point of the price graph. 1970-01-01 = ignore
  • x7 - the date/time of the 8th touch point of the price graph. 1970-01-01 = ignore
  • x8 - the date/time of the 9th touch point of the price graph. 1970-01-01 = ignore
  • x9 - the date/time of the 10th touch point of the price graph. 1970-01-01 = ignore
Fields specific to Big Movements
  • from_price - the starting price of the big movement
  • to_price - the ending price of the big movement
  • movement - the difference between the start and end of the big move
  • percentile - the percentile of move in relation to past movements. Typically this is >= 95
  • statistical_movement - Internal. Ignore.
Fields specific to Consecutive Candles
  • from_price - the starting price of the trade setup
  • to_price - the ending price of the trade setup
  • qty_candles - the number of consecutive candles
  • percentile - the percentile of the number of consecutive candles in relation to past consecutive candle occurrences. Typically this is >= 95
  • statistical_qty_candles - Internal. Ignore.
  • use_relevance_logic - Internal. Ignore.

Requires authentication

A valid request with an authorized MD5 token will be accepted

path Parameters
reportuid
required
string
symbol_report_id
required
string
query Parameters
broker_id
string
Example: broker_id={{broker_id}}

Broker ID.

token
user
string
Example: user={{user}}

Username

expire
string
Example: expire={{expire}}

Expiry of this link as a unix timestamp

account_type
string
Example: account_type={{account_type}}

0 = LIVE, 1 = DEMO

report_id
string
Example: report_id={{report_id}}

the report type id (See "GET Available Report Types")

reportuid
string
Example: reportuid={{reportuid}}

The reportuid to retrieve (See "GET Available Reports"). Use "latest" to get the latest instance of the specified report type

symbol_report_id
string
Example: symbol_report_id={{symbol_report_id}}

symbol_report_id returned by one of the results returned by the GET Snapshot call

Responses

Response samples

Content type
application/json
Example
{}

Snapshot rendered for email

Returns the content of a market snapshot in HTML form that is pre-formatted for email.

Return format

  • Status 200 - application/json - latest pattern results.
  • html content for emails

Requires authentication

A valid request with an authorized MD5 token will be accepted

path Parameters
reportuid
required
string
query Parameters
broker_id
string
Example: broker_id={{broker_id}}

Broker ID.

token
user
string
Example: user={{user}}

Username

expire
string
Example: expire={{expire}}

Expiry of this link as a unix timestamp

account_type
string
Example: account_type={{account_type}}

0 = LIVE, 1 = DEMO

report_id
string
Example: report_id={{report_id}}

the report type id (See "GET Available Report Types")

reportuid
string
Example: reportuid={{reportuid}}

The reportuid to retrieve (See "GET Available Reports"). Use "latest" to get the latest instance of the specified report type

locale
string
Example: locale={{locale}}

Locale language tag. This parameter to be used for one locale

Responses

Response samples

Content type
application/json
"<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\" >\n0.12%\n </td>\n </tr>\n <tr style=\"\">\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">USDCHF</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">0.919</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/up.png?color=%23008000\" >\n0.28%\n </td>\n </tr>\n <tr style=\"background-color: #F3F2F5;\">\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">FTSE</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">7,415.5</td>\n <td style=\"padding: 0 5px; font-family: 'Open Sans', sans-serif; font-size: 11px; color: #696A6C;\">\n <img style=\"display: inline-block !important;\" src=\"http://email.autochartist.com/mr/resources/email/icon/up.png?color=%23008000\" >\n0.71%\n </td>\n </tr>\n </tbody>\n </table>\n </td>\n <td>&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>"