CINXE.COM

Real-Time Forex Analysis, Digital Currency News and Analysis, Cryptocurrency News and Analysis, Forex Research, Forex Newsfeed, Forex Newswire: FxWirePro™

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <title>Real-Time Forex Analysis, Digital Currency News and Analysis, Cryptocurrency News and Analysis, Forex Research, Forex Newsfeed, Forex Newswire: FxWirePro™</title> <meta name="Author" content="FxWirePro™"/> <meta name="Copyright" content="FxWirePro™"/> <meta name="Description" content="FxWirePro™ is a leading financial analysis company providing real time research to FX and cryptocurrency participants around the world"/> <script type="text/javascript"> var requirejs = { baseUrl: '/assets/js', urlArgs: '20160126r1' }; </script> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="shortcut icon" href="/favicon.ico?r=151130r7"> <link rel="stylesheet" type="text/css" href="/assets/css/base.css?r=20170616r1"/> <link rel="stylesheet" type="text/css" href="/assets/css/normalize.css?r=20170616r1"/> <script data-main="apps/www.js" src="/assets/js/require.js?r=20160126r1"></script> <script src="/assets/js/TweenLite.min.js"></script> <link href='https://fonts.googleapis.com/css?family=Titillium+Web:400,600' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'> <script type="text/javascript"> require(['base'], function () { require(['popup', 'cookie', ''], function () { $(document).ready(function() { $('.backToTop').click(function() { $('html, body').animate({ scrollTop : 0 }, 300); return false; }); $(document).scroll(function() { if ($(this).scrollTop()) { $('#header').css('background','black'); } else { $('#header').css('background','none'); } }); var languageCode = 'en'; }); $('#languageSelector').change(function(e){ var url = "/"; var uri = "index/index" //alert(uri); if (this.value == 'en'){ location.href = url.substr(3); } else { if(url.substr(1, 2) == 'cn' || url.substr(1, 2) == 'tc'){ location.href = '/' + this.value + url.substr(3); } else { if(uri == 'index/currencyindex'){ location.href = '/' + this.value; }else location.href = '/' + this.value + url; } } }); var width, height, largeHeader, canvas, ctx, points, target, animateHeader = true; // Main initHeader(); initAnimation(); addListeners(); function initHeader() { width = window.innerWidth; height = window.innerHeight; target = {x: width/2, y: height/2}; largeHeader = document.getElementById('large-header'); largeHeader.style.height = height+'px'; canvas = document.getElementById('demo-canvas'); canvas.width = width; canvas.height = height; ctx = canvas.getContext('2d'); // create points points = []; for(var x = 0; x < width; x = x + width/20) { for(var y = 0; y < height; y = y + height/20) { var px = x + Math.random()*width/20; var py = y + Math.random()*height/20; var p = {x: px, originX: px, y: py, originY: py }; points.push(p); } } // for each point find the 5 closest points for(var i = 0; i < points.length; i++) { var closest = []; var p1 = points[i]; for(var j = 0; j < points.length; j++) { var p2 = points[j] if(!(p1 == p2)) { var placed = false; for(var k = 0; k < 5; k++) { if(!placed) { if(closest[k] == undefined) { closest[k] = p2; placed = true; } } } for(var k = 0; k < 5; k++) { if(!placed) { if(getDistance(p1, p2) < getDistance(p1, closest[k])) { closest[k] = p2; placed = true; } } } } } p1.closest = closest; } // assign a circle to each point for(var i in points) { var c = new Circle(points[i], 2+Math.random()*2, 'rgba(255,255,255,0.3)'); points[i].circle = c; } } // Event handling function addListeners() { if(!('ontouchstart' in window)) { window.addEventListener('mousemove', mouseMove); } window.addEventListener('scroll', scrollCheck); window.addEventListener('resize', resize); } function mouseMove(e) { var posx = posy = 0; if (e.pageX || e.pageY) { posx = e.pageX; posy = e.pageY; } else if (e.clientX || e.clientY) { posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft; posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop; } target.x = posx; target.y = posy; } function scrollCheck() { if(document.body.scrollTop > height) animateHeader = false; else animateHeader = true; } function resize() { width = window.innerWidth; height = window.innerHeight; largeHeader.style.height = height+'px'; canvas.width = width; canvas.height = height; } // animation function initAnimation() { animate(); for(var i in points) { shiftPoint(points[i]); } } function animate() { if(animateHeader) { ctx.clearRect(0,0,width,height); for(var i in points) { // detect points in range if(Math.abs(getDistance(target, points[i])) < 4000) { points[i].active = 0.2; points[i].circle.active = 0.6; } else if(Math.abs(getDistance(target, points[i])) < 20000) { points[i].active = 0.1; points[i].circle.active = 0.3; } else if(Math.abs(getDistance(target, points[i])) < 40000) { points[i].active = 0.02; points[i].circle.active = 0.1; } else { points[i].active = 0; points[i].circle.active = 0; } drawLines(points[i]); points[i].circle.draw(); } } requestAnimationFrame(animate); } function shiftPoint(p) { TweenLite.to(p, 1+1*Math.random(), {x:p.originX-50+Math.random()*100, y: p.originY-50+Math.random()*100, onComplete: function() { shiftPoint(p); }}); } // Canvas manipulation function drawLines(p) { if(!p.active) return; for(var i in p.closest) { ctx.beginPath(); ctx.moveTo(p.x, p.y); ctx.lineTo(p.closest[i].x, p.closest[i].y); ctx.strokeStyle = 'rgba(156,217,249,'+ p.active+')'; ctx.stroke(); } } function Circle(pos,rad,color) { var _this = this; // constructor (function() { _this.pos = pos || null; _this.radius = rad || null; _this.color = color || null; })(); this.draw = function() { if(!_this.active) return; ctx.beginPath(); ctx.arc(_this.pos.x, _this.pos.y, _this.radius, 0, 2 * Math.PI, false); ctx.fillStyle = 'rgba(156,217,249,'+ _this.active+')'; ctx.fill(); }; } // Util function getDistance(p1, p2) { return Math.pow(p1.x - p2.x, 2) + Math.pow(p1.y - p2.y, 2); } }); }); </script> <!---GoogleAnalytics--> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-29016284-1', 'auto'); ga('send', 'pageview'); </script> <!--clicky---> <script src="//static.getclicky.com/js" type="text/javascript"></script> <script type="text/javascript">try{ clicky.init(100995574); }catch(e){}</script> <noscript><p><img alt="Clicky" width="1" height="1" src="//in.getclicky.com/100995574ns.gif" /></p></noscript> </head> <body> <div id="wrap"> <div id="header"> <div class="logo"><a href="/"><img src="/assets/images/common/logoFxwirepro.png" alt="The Fastest Growing Real-Time Professional FX Newsfeed for FX Brokers, MT4 brokers and Financial Institutions Worldwide"></a> </div> <ul class="headerMenu"> <li> <a href="/">Home</a> </li> <li class="menuProgram"> <a href="/invest">Invest</a> </li> <li> <a href="/currencyindex" class="newLabel"> Index</a> </li> <li> <a href="/product">Product</a> </li> <li> <a href="/mt4">MT4&amp;MT5</a> </li> <li> <a href="/contactus">Contact</a> </li> <li> <a href="/subscribe">Demo</a> </li> <li> <a href="/login"> Login</a> </li> <li> <a href="https://www.facebook.com/fxwirepro" target="_blank"><img src="/assets/images/common/icnFacebook.png"></a> </li> <li class="languageWrap"> <select id="languageSelector"name="language"> <option value="en">English</option> <option value="cn">中文(简化)</option> <option value="tc">中文(繁體)</option> </select> </li> </ul> </div> <!--content--> <div class="content"> <div id="main"> <div class="section topBanner"> <div id="large-header" class="large-header"> <canvas id="demo-canvas"></canvas> </div> <div class="innerWrap bannerWrap"> <h1> FxWirePro&trade; is a leading financial analysis company providing <br> real time research to FX participants around the world</h1> <p> For a demonstration of FxWirePro&trade; capabilities, complete the form below to request a demo </p> <div class="fieldset"> <form name="demonstration" id="frmContactUs" method="post" > <input type="hidden" name="type" value="index_demo" /> <input type="text" name="firstname" placeholder="Name *"> <br> <input type="text" name="email" placeholder="Email *"> <br> <input type="text" name="phone" placeholder="Phone *"> <br> <input type="text" name="company" placeholder="Company *"> <br> <button type="submit" data-text="Send Request"> Send Request </button> </form> </div> </div> </div> <div class="section facts"> <div class="innerWrap factWrap"> <h1>Actionable FX Analysis & Intelligence</h1> <div class="left"> <p> FxWirePro&trade; is a trusted professional grade real-time financial analysis company providing investors and traders with a comprehensive overview and insight of the global currency markets. <br> <br> Established as an independent research company in 2010, our team of analysts provide real time analysis on: </p> <ul> <li>Currency Forecasts</li> <li>Money Market</li> <li>Sovereign Ratings</li> <li>Institutional Positions</li> <li>Treasury</li> <li>Geopolitics</li> </ul> <ul> <li>Economic Indicators</li> <li>Digital Currencies</li> <li>Commodities</li> <li>Technical Analysis</li> <li>Central Banks</li> <li>Stock Indices</li> </ul> </div> <div class="right"> <img src="/assets/images/index/imgMonitor.png"> <div class="button" data-text="Download FxWirePro&trade; fact sheet"><a href="/assets/files/en/fxwirepro_brochure_en.pdf" target="_blank"> Download FxWirePro&trade; fact sheet </a></div> </div> </div> </div> <div class="section newsWire"> <div class="innerWrap descWrap"> <h1>NEWSWIRES</h1> <p> FxWirePro&trade;'s financial analysts monitor the foreign exchange market to <br> curate the most timely and actionable newswires in the industry. </p> <div class="descBox"> <img src="/assets/images/index/icnFx.png"> <h3>FX</h3> <p> FxWirePro&trade;'s FX news gives forex participants an edge with expert commentary, in-depth analysis and news curated by FxWirePro&trade;'s global team of FX editors and reporters. </p> </div> <div class="descBox"> <img src="/assets/images/index/icnMacro.png"> <h3>MACRO</h3> <p> Global event coverage impacting forex, equity, bonds and the futures product complex. Coverage includes economic data points, monetary policy alterations, international events, exclusive commentary and notable price movement. </p> </div> <div class="descBox"> <img src="/assets/images/index/icnTrading.png"> <h3>TRADING IDEAS</h3> <p> Experts at analyzing news and trends, FxWirePro&trade;'s analysts generate actionable trading ideas. Examples include unusual options activity, cross-currencies to trade on news items and price spikes. </p> </div> </div> </div> <div class="section partner"> <h1>WHAT PARTNERS ARE SAYING</h1> <p> See what our customers and partners have to say about FxWirePro&trade; </p> <div class="innerWrap descWrap table"> <div class="tableRow"> <div class="tableCell"><img src="/assets/images/index/logoTradingview.png"></div> <div class="tableCell"><img src="/assets/images/index/logoNetdania.png"></div> <div class="tableCell"><img src="/assets/images/index/logoForexmagnates.png"></div> <div class="tableCell"><img src="/assets/images/index/logoMetaquotes.png"></div> </div> <div class="tableRow"> <div class="tableCell"><p>" Timely and accurate news fromFxWirePro&trade; are a perfect addition to real-time TradingView charts."</p></div> <div class="tableCell"><p>"E xcellent news source. Integrates perfectly with NetDania applications."</p></div> <div class="tableCell"><p>" I liked it immediately. For those of you who are into fundamentals, this will be of great benefit, no doubt."</p></div> <div class="tableCell"><p>" We are very glad that together with the platform we can offer a high quality newswire feed to our clients."</p></div> </div> <div class="tableRow"> <div class="tableCell"><p class="whoSays">Stan Bokov, Co-founder at TradingView</p></div> <div class="tableCell"><p class="whoSays">Stig Brylle, Founder at NetDania</p></div> <div class="tableCell"><p class="whoSays">Michael Greenberg<br>Founder at Finance Magnates</p></div> <div class="tableCell"><p class="whoSays">Renat Fatkhullin CEO of MetaQuotes</p></div> </div> </div> </div> <div class="section testimonial"> <div class="innerWrap testimonialWrap"> <h1>TESTIMONIALS</h1> <div class="table"> <div class="tableRow"> <div class="tableCell"> <div class="balloon">" I follow you around a lot lately. I see u always on point on markets. "</div> <p>D Dhawni</p> </div> <div class="tableCell"> <div class="balloon">" Great Trading. Thank you for your suggestion "</div> <p>Dorial Fumilan</p> </div> <div class="tableCell"> <div class="balloon">" Hey mate,thanks for the signals and insight "</div> <p>Dimil Nikolias</p> </div> <div class="tableCell"> <div class="balloon">" Good call on EU! you are my favorite. Kudos!! "</div> <p>Chris Tselentis</p> </div> </div> <div class="tableRow"> <div class="tableCell"> <div class="balloon">" You said yesterday that on the news from Britain on inflation the trend will go to the South - and so it happened I remember your opinion. Please accept my sincere thanks and Hello from Russia. "</div> <p>Dimitri</p> </div> <div class="tableCell"> <div class="balloon">" Excellent call on USDCAD. Your charts are very clear to me with best recommendations. "</div> <p>Ruslan</p> </div> <div class="tableCell"> <div class="balloon">" Your analysis is great and I appreciate a lot. Thank you very much for your ideas that giving to us. "</div> <p>Segey</p> </div> <div class="tableCell"> <div class="balloon">" I just wanted to say what a lovely work you've been doing. Absolutely amazing. I've been following your trading ideas and they are absolutely spot on. Keep up the good work. "</div> <p>James</p> </div> </div> </div> </div> </div> </div> </div> <div id="footer"> <div class="innerWrap section"> <p> <span class="backToTop">▲ Top</span> </p> <ul class="footerBox"> <li> <a href="/">Home</a> </li> <li> <a href="/invest">Invest</a> </li> <li> <a href="/currencyindex">Index</a> </li> <li> <a href="/product">Product</a> </li> <li> <a href="/mt4">MT4 &amp; MT5</a> </li> <li> <a href="/partners">Partners</a> </li> </ul> <ul class="footerBox"> <li> <a href="/assets/files/en/taxonomy.pdf" target="_blank">Taxonomy</a> </li> <li> <a href="/cookie">Cookie Policy</a> </li> <li> <a href="/privacypolicy">Privacy Policy</a> </li> <li> <a href="/termsconditions">Terms and Conditions</a> </li> </ul> <ul class="footerBox"> <li> <a href="/subscribe">Request a demo</a> </li> <li> <a href="/contactus">Contact Us</a> </li> <li> &nbsp; </li> </ul> <ul class="snsWrap"> <li class="snsIcons"> <a href="https://www.facebook.com/fxwirepro" target="_blank" class="linkFacebook" title="Facebook"></a> <a href="https://plus.google.com/+FxwirePro/posts" target="_blank" class="linkGoogleplus" title="Google +"></a> <a href="https://www.linkedin.com/company/fxwire-pro" target="_blank" class="linkLinkedIn" title="LinkedIn"></a> </li> </ul> </div> <p class="copyWrite"> &copy; 2025 IBTRADE LLC. All Rights Reserved. </p> </div> </div> <script type="text/javascript"> require(['base'], function () { require(['popup'], function () { $(document).ready(function() { }); $('#frmContactUs').on('submit', function () { if (!this.firstname.value) { alert('Please enter your Name.'); this.firstname.focus(); return false; } if (!this.email.value) { alert('Please enter your E-mail address.'); this.email.focus(); return false; } if (/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/.test(this.email.value) == false) { alert('Please check your E-Mail format.'); this.email.focus(); return false; } if (!this.phone.value) { alert('Please enter your Phone number.'); this.phone.focus(); return false; } if (!this.company.value) { alert('Please enter your Company name.'); this.company.focus(); return false; } $.ajax({ url: '/index/ajax/contact', type: 'post', data: $(this).serialize(), dataType: 'json', success: function (response) { if (response.error != 0) { alert(response.message); return; } //alert('Please add info@fxwirepro.com to your address book or contacts to ensure that our future emails will be properly delivered to your inbox.'); //$('#frmContactUs').trigger("reset"); location.href = '/requestresult'; }, error: function (xhr, ajaxOptions, thrownError) { if (xhr.status > 0) { alert('server processing error.'); } } }); return false; }); }); }); </script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10