JJN-BigTrend 인디케이터
이 인디케이터는 한 차트에 다른 통화쌍의 추세까지 단순하게 확인 할 수 있게 눈으로 보여주는 인디케이터입니다.
통화쌍 옆에 네모박스 순서는 5분,15분,30분,1시간,4시간으로 색은 초록색은 상승추세 빨간색은 하락추세를 나타냅니다.
밑에 코드 수정으로 시간프레임이나 통화쌍을 바꿀수있습니다.
//+------------------------------------------------------------------------------------------------------------------+ // YOU CAN CHANGE THESE PARAMETERS ACCORDING TO YOUR TASTE: //+------------------------------------------------------------------------------------------------------------------+ int tfnumber = 5; // Number of the timeframes int tframe[] = {5,15,30,60,240}; // Timeframes in minutes double IndVal[][5]; // Be the second array-index equal with tfnumber int NumberOfPairs = 8; // Number of the pairs string Pairs[] = {"EURUSD","GBPUSD","AUDUSD","NZDUSD","USDJPY","GBPJPY","EURJPY","USDCHF"}; // Requested pairs //+------------------------------------------------------------------------------------------------------------------+ //+------------------------------------------------------------------------------------------------------------------+ |
코멘트 (0)