If you're on the lookout for a user-friendly trend indicator that works across multiple currencies, look no further than JJN-BigTrend. This tool is highly customizable, letting you tweak it to fit your trading style, whether it’s the timeframes you prefer or the currency pairs you want to follow.
To make adjustments, dive into the code and look for the section outlined below:
//+------------------------------------------------------------------------------------------------------------------+// FEEL FREE TO TWEAK THESE PARAMETERS AS YOU SEE FIT://+------------------------------------------------------------------------------------------------------------------+int tfnumber = 5; // Number of timeframesint tframe[] = {5,15,30,60,240}; // Timeframes in minutesdouble IndVal[][5]; // Ensure this array index matches tfnumberint NumberOfPairs = 8; // Number of currency pairsstring Pairs[] = {"EURUSD","GBPUSD","AUDUSD","NZDUSD","USDJPY","GBPJPY","EURJPY","USDCHF"}; // Currency pairs you can track//+------------------------------------------------------------------------------------------------------------------+//+------------------------------------------------------------------------------------------------------------------+


Comments 0