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.
-
Content Count
4075 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Calendar
Articles
Everything posted by Tams
-
I use 10x overnight margin for daytrade. LOL
-
can you read? did you read the notice before you post?
-
HSI traders should check the Chat room during Asian market hours...
-
for the EasyLanguage users, you are in luck... there is no need to 'mentally' slide the market open to the prior day close... you can do it with the sHiFt indicator: http://www.traderslaboratory.com/forums/f46/shifted-5949.html 31.11
-
The Alert window has a tendency to pop up under MultiChart's main window. If you take the MC program down from full screen, you will see the alert message. I don't know if this is a MC problem, or a Windows OS problem. I agree it is annoying.
-
additional protection: input: Password(12345); if password = 12345 then begin note: make sure you have a copy of the source code before you encrypt anything... otherwise you are pwnd if you lost your encryption key.
-
try this: if getuserid = xxxx then begin xxxx being the intended user's ID. and then save the code in encrypted format. note: encrypted code is not 100% protected... it can be reverse-engineered. compiled code offers more protection.
-
h-e-l-l-ooooo... what program are you using?
-
you are... LOL JK... ;-)> as in anything in life, I am sure there are incompetence/deficiencies in both parties.
-
have you wonder I made this suggestion... ? http://www.traderslaboratory.com/forums/f56/gravestone-doji-6184.html#post68531 ;-)
-
one more tip... You can plot TEXT in the scanner ! try this: Plot1( "BUY NOW!");
-
In EasyLanguage, when evaluating a True/False statement, "True" is assumed. Therefore the following statements have the same effect: 1) if LastBarOnChart = True Then... 2) if LastBarOnChart Then...
-
Your success is my reward. :-)
-
His practice is to solicit "donations" from unsuspecting newbies who contact him for further information. I would suggest him to post his codes here. At TradersLaboratory, he can solicit donations legally. All he has to do is post his code and enable the "Donation" option.
-
Great work. Thanks for posting it. Whoever wants to further the learning can add to it. :applaud:
-
For the benefit all... you should post your rendition.
-
If I were the moderator, I would ban you too, even if you have not posted a link. Because so far all you have been posting are baits; nothing of substance or value to this board.
-
Good to hear it is working. Your wife might divorce you because you will be spending too much time creating new filters. :-) you can experiment with these variations: Plot1 (High + Range, "Gravestone" ) ; or Plot1 (Low - Range, "Gravestone" ) ; enjoy ! p.s. more Candles here: http://www.traderslaboratory.com/forums/f46/candle-pattern-5736.html
-
in case you have not got this: EasyLanguage dictionary both TradeStation and MultiCharts versions: http://www.traderslaboratory.com/forums/f46/xdays-back-hi-lo-rt-intraday-6026.html#post67102
-
I have highlighted the errors var: gravestone(false); gravestone = (open = low) and (open = close) and (High > last ); If Gravestone = True then begin Plot1 (Close, "Gravestone" ) ; SetPlotColor (Red ,1); Alert ( "Gravestone" ) ; end ;
-
Setplotcolor sytax is incorrect. That's why I know you have not looked up the dictionary. ;-) Setplotcolor is not a necessity at this stage, but since you were looking up the dictionary, I thought I would throw that in as well. It will come in handy when you have to distinguish gravestone up from gravestone down.
-
(High > last 5 bars ago ) can be written as: High >= Highest (High, 5)
-
nice bait... another 1st poster magic. in another board, someone would jump in and ask "Which room? Who?". LOL. Fat chance at TradersLaboratory.
-
this is the code of the gap up if Low > High[1] then begin Plot1( High, "GapUp" ) ; Alert ; end else NoPlot( 1 ) ;
-
You are at 9.9999999 !