Search found 198 matches

by frang0nve
Sun Jul 08, 2012 6:49 am
Forum: AmiBroker
Topic: MO_CrashZone for AmiBroker
Replies: 4
Views: 9402
Gender: Male

MO_CrashZone for AmiBroker

Hello, This is my code for AmiBroker displaying MO Weekly CrashZone. [font=Courier New] dow = DayOfWeek(); newWeek = dow < Ref( dow, -1); W0High = HighestSince( newWeek, High); W0Low = LowestSince( newWeek, Low); W0Range = W0High-W0Low; BarsInWeek0=BarsSince(newWeek); W1Range=Ref(W0Range,-BarsInWeek...
by frang0nve
Tue Jun 19, 2012 11:04 am
Forum: beginners forum
Topic: MT4 Behavior !!!! i get stopped early 10 pips !!!
Replies: 3
Views: 2619
Gender: Male

Hello, I see a problem only en NZDJPY: NZDJPY pair Oanda (my broker) high today (ask) was 62.787 at 06:13 EST (it SHOULDN'T trigger your stoploss order at 62.84) Regarding EURJPY pair Oanda high today (ask) was 99.680 at 06:13 EST (it SHOULD trigger your stoploss order at 99.677) I suggest you to as...
by frang0nve
Tue Jun 19, 2012 5:05 am
Forum: statistics
Topic: Learning Kdb+/q
Replies: 15
Views: 23379
Gender: Male

Hello,

I've found some free GUI tools to help writing code in q:

Studio For Kdb+

Qclient

Eclipse + QKDT

I've just started to test Studio For Kdb+ and it's very useful with its charting feature!





Cheers
by frang0nve
Sun Jun 17, 2012 7:46 am
Forum: statistics
Topic: Learning Kdb+/q
Replies: 15
Views: 23379
Gender: Male

Hello, This step could be done earlier, but I forgot... We'll add a column in the tickdata table with the date: [font=Courier New] EU:update Date:datetime.date from EU [/font] http://i47.tinypic.com/28gyp3m.jpg And in the daily table using date format instead of datetime format: [font=Courier New] E...
by frang0nve
Sun Jun 17, 2012 5:34 am
Forum: statistics
Topic: Learning Kdb+/q
Replies: 15
Views: 23379
Gender: Male

Now we'll add NewGreenRat, NewRedRat, EntryLevel, SLLevel columns to the tick table. To do so we build and auxiliary table (EU_D1_S) only with the required columns: [font=Courier New] EU_D1_S: select datetime,NewGreenRat,NewRedRat,EntryLevel,SLLevel from EU_D1 [/font] This is the auxiliary table: ht...
by frang0nve
Fri Jun 15, 2012 9:12 pm
Forum: statistics
Topic: Learning Kdb+/q
Replies: 15
Views: 23379
Gender: Male

Hello, We'll add a column to the Daily Data Table containing the weekday (0:Sat, 1:Sun,..., 6:Fri) with this command: [font=Courier New]EU_D1: update Weekday:datetime mod 7 from EU_D1[/font] Now we need to find the entry points for green rats (buyers): The first tick (and only the first tick) every ...
by frang0nve
Thu Jun 14, 2012 5:35 am
Forum: statistics
Topic: Learning Kdb+/q
Replies: 15
Views: 23379
Gender: Male

Now we'll add the open data from the weekly table into the daily table using this command: [font=Courier New]EU_D1:aj[`datetime;EU_D1;EU_W1][/font] This is the daily table with weekly data: http://i49.tinypic.com/2yw96aq.jpg Cheers Thanks to Charles Skelton and many others in Kdb+ Personal Developer...
by frang0nve
Wed Jun 13, 2012 5:23 am
Forum: statistics
Topic: Learning Kdb+/q
Replies: 15
Views: 23379
Gender: Male

Hello: As we'll need using the Open value from Weekly table in Daily table we have to use a different name to avoid problems, so we'll use W_Open. [font=Courier New]EU_W1:update W_Open:Open from EU_W1 EU_W1:delete Open from EU_W1[/font] The table with the new column name: http://kreslik.com/forums/u...
by frang0nve
Wed Jun 06, 2012 12:46 am
Forum: statistics
Topic: Learning Kdb+/q
Replies: 15
Views: 23379
Gender: Male

Hello and welcome.

Do you have experience with q?

Cheers
by frang0nve
Mon Jun 04, 2012 6:40 pm
Forum: beginners forum
Topic: Hello!
Replies: 2
Views: 2164
Gender: Male

Hello.

Have a pleasant journey!

Go to advanced search