Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.
flyingdutchmen
Members-
Content Count
114 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Articles
Everything posted by flyingdutchmen
-
besides a price the cmo needs a period for its calculation, change AbsCMO=AbsValue(CMO©)/100; by AbsCMO=AbsValue(CMO(C,5))/100; and it should work, or as you prefere set a input for the CMO's Period good luck
-
How Long Does It Take to Become a Profitable Trader?
flyingdutchmen replied to swansjr's topic in Beginners Forum
this is an impossible to anser question as it is depending on inteligence, creativity and many more factors in short.... me is not you you is not me -
the orderflow on a 1 minute fdax chart no filters being used unbelievable to see how the "average" is shorting all the way a 50 point upmove btw BlowFish your last skript which you didnt compile yet you havent declared the variable Block yet thank you this is a very usefull indicator
-
indeed the way it looks sofar is that we have various posters here im tread claiming it can be done; some even say it is "easy" yet untill today after 9 pages we have not succeed to make a replica of the dumb/smart-money indicator nor did we even come close and yes i have also not succeed
-
i am teling that the indicator you guys see in the youtube-film is working on LIVE FEED only and the guy in the films admits it saying " i have turned on the pc at 9am this morning it takes a while for the indicator to plot because it only works on live feed " i am talking about EOT's indicator and can not recall i have spoken about what can or can not be done by tradestation or any other software
-
i have said this before and you can hear the guy ftom EOT say it in the second film "Dumb Money Part2" somewere in the midle of the film this indicator is plotting ONLY ON LIVE STREAM and can NOT be used with hystorical data no DLL no nothing just plain simple calcuations just as we are trying to skript here
-
that is correct the problem is within the comparing of those 2 value's by using a statement like value1-value1[1] you will get nothing as there are no historical value's saved in intrabarpersist variables but you will need to use the intrabarpersist variables in order to recieve all value's within each timeframe the calculation sounds indeed easy but how to compare both values im trying to figure out
-
that would leave me out unfortunally as i use 1 minute bars for my fdax trading and tradesignal doesnt support ticks i will have to make something from substracting the actual volume
-
how did you succeed - would you mind sharing .... i pretty much have it the way i want it to be but i still need to filter the contracts somehow btw. second film dumb money part2 somewere in the midle the guy says something like " i turned on the pc at 9am because the indicator only plots live " you can also see there that in the beginning of the chart the indicator didnt plot so it definitly does NOT use historical data
-
did anybody manage to filter the amount of contracts like the indicator in the movie ? im having a hard time filtering them to my conditions mincontracts - maxcontracts
-
if rsi(close,14) crossesover 90 then shortsell this bar on close else if rsi(close,14) crossesunder 20 then buy this bar on close; i don't need to see a backtest of this, do NOT trade this
-
Need Assintance with Simple Indikator ( Easy Language )
flyingdutchmen replied to flyingdutchmen's topic in Coding Forum
offcourse this indicator is built in the strategy's script -
hello people, having trouble with what you could call a very simple indicator. it is surpose to ad the "pips"-spread for each bar ( system = long only ) as a simple line buth it only counts the last 2 trades profit/loss and doesn't start at the first bar and keeps adding. hope someone could give me an hand this its not for tradestation but for TS5 which supports and handles easy language, i cant find a setting in the MM which keeps doing this for every currency thats i would like to see the "pips only" thanks in advance inputs: Spread ( 0.0002 ); variables: i, j; i = ( exitprice(1) - entryprice(1) ) - Spread ; if i <> i[1] then j = i + i[1]; plot1(j,"");
-
Buying on First Monday Open and Exit on Friday
flyingdutchmen replied to johni's topic in Coding Forum
im not sure if every worth is supported in your software, im using TradeSignal5 equila if DayOfWeek = 2 then buy this bar on open; if DayOfWeek = 5 this ExitLong this bar on close; //ExitLong could be replaced by Sell