Forum

sharing file or Fileread file write in a different folder

Simply use the cmd prompt in windows and create a junction link or symbolic link very easy: in the command prompt type: mklink "C:\MyOriginalFile.txt" "C:\MyDestinationFile.txt" Make sure neither one of the files exist before hand. Once the link is created you can start using filewrite and fileread

Loookimg for help to translate indicator into an EA

Can anyone help with this... I can barter with some web design: very much appreciated =========================================== #property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Aqua #property indicator_color2 Tomato //---- input parameters extern int

Please help translate this simple indicator into an EA

#property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Aqua #property indicator_color2 Tomato //---- input parameters extern int period=21; //extern int method=0; // MODE_SMA extern int method=3; // MODE_SMA extern int price=0; // PRICE_CLOSE extern string

Trying to translate from an indicator to an EA... Please help

This is a challenge for me as I am a newbee but I am sure most anyone with a little experience could re rewrite this indicator into the EA.... please help!!! This is an RSI divergence... I'd like to make entries where the arrows appear.. #property indicator_separate_window #property