Started 3 days, 2 hours ago (2009-11-11 10:52:00)
by Trader333
What instruments are you wishing to trade ?
Paul
Started 6 days, 4 hours ago (2009-11-08 08:44:00)
by Glenn
I'd be more interested to know if it works on
Windows 7.
Vista was a stop-gap codge-up imo. Meanwhile I'm staying on XP.
Glenn
Started 2 weeks ago (2009-10-30 14:59:00)
by skan
Hello again
OK, I got it but now the problem is that Excel tells that there is not enough memory (resources) in the computer to handle all data
I have to learn R or some other useful software
Started 2 weeks, 1 day ago (2009-10-30 05:10:00)
by Charlton
Quote:
Originally Posted by belflan I'm trying to capture the value of instrument at a certain time of day, and then compare it to its current value. I was thinking;
IF ( VALUEofX) < ( VALUEofX at time 1400) then begin;
but the computer said no.. Belflan
I would advise you to use
Global Variables (GV). They are extremely powerful and allow you to ...
Started 2 weeks, 4 days ago (2009-10-27 10:43:00)
by Trader333
Why do you want an indicator that does not plot anything ? Are you wanting it to plot some of the time and not others ? Anyway you can use something like this:
If Close > Highest(
C,1)[1] Then NoPlot(1);
Paul
Started 2 weeks, 4 days ago (2009-10-27 10:54:00)
by zt3k
Quote:
Originally Posted by gm1012002 Does anyone have the free
hawkeye volume indicator? don't buy it.
it is useless.
Started 2 months, 4 weeks ago (2009-08-17 17:48:00)
by Charlton
Quote:
Originally Posted by goose4 Im looking for a broker and looking to trade
direct access.Its so hard these days to choose where to go it becomes as hard as picking the right share position,LOL.
I would love to hear some feedback on tradestation if you currently use them and what are the pros and cons?
Does the account have to be in US dollars?
Do you ...
Started 2 weeks, 6 days ago (2009-10-25 08:13:00)
by marktcoleman
// Declare two
boolean variables:
vars: bool touched10(false), bool touched90(false);
If slowk < = 10 then touched10 = true;
If slowk > = 90 then touched90 = true;
if slowk crosses under 80 and touched90 = true then begin
sell.....
touched90 = false;
end;
if slowk crosses over 20 and touched10 = true then begin
buy .....
touched10 = ...