Hdie_chart
- option to hide up to a candle or % of chart
- option to match chart background or not
Attached File(s)
Hide_chart.ex4
16 KB
|
34 downloads
2
I will code your pivot EAs for no charge 24 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} This is an another option to consider. Hdie_chart - option to hide up to a candle or % of chart - option to match chart background or not {image} {file}Ignored
Disliked{quote} Dear BestTraderEv! The indicator Volumes_Chart_Bottom_Top_CandleColors.ex5 has bad looking bars (it’s hard to distinguish visually). I want to improve how Volume_UP_Mod_Alert.ex4 (Post 72,256) looks like from a respected Tictak user. I want to try to do this work on my own (I know a little programming). When finished I will post the open source code here. I ask you: post (post) The code of the mentioned indicator to start this work. Please do not refuse the request. It's hard to watch - your eyes are bugging out. R.S. Sorry for the exposition....Ignored
Disliked{quote} Master jeanlouie, thank you for this amazing work 100% perfect this is what I wanted. I am grateful to you have a nice weekend. Good Luck. Kind regards, MotiIgnored
DislikedHi BestTraderEv, I have one more request, if you don't mind! It would be really great if you could modify this indicator so that when switching between timeframes it always shows the next timeframe. For example, on the 1H timeframe the indicator should show data from the 4H timeframe, on the 15m timeframe it should show data from the 30m timeframe, and so on. Thanks in advance! {file}Ignored
int NextHigherTf() { int TimeFrames[10] = { 1,5,15,30,60,240,1440,10080,43200,43200 }; for(int i=0; i<9; i++) if( TimeFrames[i] == Period() ) return(TimeFrames[i+1]); }
Disliked{quote} In this version you won't be able to see anything on the left. Like the description on the trade line, and SL/TP lines... Or, am I mistaken?Ignored
Disliked{quote} Inside_Bar_colored - colors inside bars, engulfed bars - showhide via optional hotkey {image} {file}Ignored
Disliked{quote} Hello jeanlouie, please will it be possible to make indicator which can coloured outside bar as it shown in the image below. How it can work for example when with draggable vline any “x” candle is selected it draw horizontal line at Hi/Lo of selected candle till live candle from this point vline stick on selected candle and any candle is outside of hi/low that candle colour different as shown in the picture attached. Outside Bar coloured - Colours outside bars - Show hide via optional hotkey…...Ignored
Disliked{quote} Just a little note: It's really difficult to understand what you want. For example, you are using the term "outside bar". And what you are showing aren't outside bars by any common chart bars definition. They are only bars which are outside your lines, but not "outside bars". And, also, you are not being precise. We can only suppose that by "outside" you mean that High price is below the bottom line, and Low is above the upper line... You need to be very specific about such details.Ignored
//+------------------------------------------------------------------+ //| Expert initialization function | //+------------------------------------------------------------------+ void OnTick() { // Create static variables for low and high static double LastHigh; static double LastLow; // If prices for candle 1 have changed if ((LastHigh!=High[1]) && (LastLow!=Low[1])) { // create a file name string mySpreadsheet="Spreadsheet2024Oct.csv"; // open the file for read & write, as csv int mySpreadsheetHandle=FileOpen(mySpreadsheet,FILE_READ|FILE_WRITE|FILE_CSV|FILE_ANSI); // goto the end of file FileSeek(mySpreadsheetHandle, 0, SEEK_END); // append time, high and low to the file content FileWrite(mySpreadsheetHandle,"TimeStamp", Time[1],"High ", High[1] , "Low ",Low[1]); // file close FileClose(mySpreadsheetHandle); //assign current values for the next time LastHigh=High[1]; LastLow=Low[1]; // create a output on chart Comment ( "Last High: ", High[1], "\n" "Last Low: ", Low[1] ); }}
DislikedGood evening coders and members of this great community. I thank you for the many past helps. Please, i need your help to add POP UP and SOUND ALERT this attached indicator, if it is possible. I need the alert to sound and pop up when the candle closed and histogram crossed level zero up or down and the GREEN/RED bar is printed above the level. The alert can read something like...'1 HR US30 Momentum Histogram crossed to Bull Zone' PLS, ONLY WHEN THE GREEN/RED HISTOGRAM BAR IS PRINTED SHOULD THE ALERT COME UP Pls, add signal arrow too. i thank you...Ignored
DislikedGreetings to the traders in the house, I really need help on creating Ea using only trending and 1 moving Average. Goal is get signal and trade manuallyIgnored