TradingView
POWERFUL_TRADERS
Jan 19, 2017 8:00 AM

0.74466 VS 0.75664 = Fight!!! ;) 

Australian Dollar/U.S. DollarFXCM

Description

#include <iostream>
using namespace std;

int main()
{
setlocale(0, "");
double num;

cout << "0.75267 ";
cin >> num;

if (num < 10) { //If the price breakthrough the price 0.74466 = short term Downtrend
cout <<
} else { // If the price breakthrough the price 0.75664 = short term Uptrend
cout <<
}
return 0;
}
More